]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
ramoops: update parameters only after successful init
[karo-tx-linux.git] / MAINTAINERS
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         X: Files and directories that are NOT maintained, same rules as F:
94            Files exclusions are tested before file matches.
95            Can be useful for excluding a specific subdirectory, for instance:
96            F:   net/
97            X:   net/ipv6/
98            matches all files in and below net excluding net/ipv6/
99         K: Keyword perl extended regex pattern to match content in a
100            patch or file.  For instance:
101            K: of_get_profile
102               matches patches or files that contain "of_get_profile"
103            K: \b(printk|pr_(info|err))\b
104               matches patches or files that contain one or more of the words
105               printk, pr_info or pr_err
106            One regex pattern per line.  Multiple K: lines acceptable.
107
108 Note: For the hard of thinking, this list is meant to remain in alphabetical
109 order. If you could add yourselves to it in alphabetical order that would be
110 so much easier [Ed]
111
112 Maintainers List (try to look for most precise areas first)
113
114                 -----------------------------------
115
116 3C505 NETWORK DRIVER
117 M:      Philip Blundell <philb@gnu.org>
118 L:      netdev@vger.kernel.org
119 S:      Maintained
120 F:      drivers/net/ethernet/i825xx/3c505*
121
122 3C59X NETWORK DRIVER
123 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
124 L:      netdev@vger.kernel.org
125 S:      Maintained
126 F:      Documentation/networking/vortex.txt
127 F:      drivers/net/ethernet/3com/3c59x.c
128
129 3CR990 NETWORK DRIVER
130 M:      David Dillow <dave@thedillows.org>
131 L:      netdev@vger.kernel.org
132 S:      Maintained
133 F:      drivers/net/ethernet/3com/typhoon*
134
135 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136 M:      Adam Radford <linuxraid@lsi.com>
137 L:      linux-scsi@vger.kernel.org
138 W:      http://www.lsi.com
139 S:      Supported
140 F:      drivers/scsi/3w-*
141
142 53C700 AND 53C700-66 SCSI DRIVER
143 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
144 L:      linux-scsi@vger.kernel.org
145 S:      Maintained
146 F:      drivers/scsi/53c700*
147
148 6PACK NETWORK DRIVER FOR AX.25
149 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
150 L:      linux-hams@vger.kernel.org
151 S:      Maintained
152 F:      drivers/net/hamradio/6pack.c
153
154 8169 10/100/1000 GIGABIT ETHERNET DRIVER
155 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
156 M:      Francois Romieu <romieu@fr.zoreil.com>
157 L:      netdev@vger.kernel.org
158 S:      Maintained
159 F:      drivers/net/ethernet/realtek/r8169.c
160
161 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
162 M:      Greg Kroah-Hartman <gregkh@suse.de>
163 L:      linux-serial@vger.kernel.org
164 W:      http://serial.sourceforge.net
165 S:      Maintained
166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
167 F:      drivers/tty/serial/8250*
168 F:      include/linux/serial_8250.h
169
170 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
171 L:      netdev@vger.kernel.org
172 S:      Orphan / Obsolete
173 F:      drivers/net/ethernet/8390/
174
175 9P FILE SYSTEM
176 M:      Eric Van Hensbergen <ericvh@gmail.com>
177 M:      Ron Minnich <rminnich@sandia.gov>
178 M:      Latchesar Ionkov <lucho@ionkov.net>
179 L:      v9fs-developer@lists.sourceforge.net
180 W:      http://swik.net/v9fs
181 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
183 S:      Maintained
184 F:      Documentation/filesystems/9p.txt
185 F:      fs/9p/
186
187 A2232 SERIAL BOARD DRIVER
188 L:      linux-m68k@lists.linux-m68k.org
189 S:      Orphan
190 F:      drivers/staging/generic_serial/ser_a2232*
191
192 AACRAID SCSI RAID DRIVER
193 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
194 L:      linux-scsi@vger.kernel.org
195 W:      http://www.adaptec.com/
196 S:      Supported
197 F:      Documentation/scsi/aacraid.txt
198 F:      drivers/scsi/aacraid/
199
200 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
201 M:      Hans de Goede <hdegoede@redhat.com>
202 L:      lm-sensors@lm-sensors.org
203 S:      Maintained
204 F:      drivers/hwmon/abituguru.c
205
206 ABIT UGURU 3 HARDWARE MONITOR DRIVER
207 M:      Alistair John Strachan <alistair@devzero.co.uk>
208 L:      lm-sensors@lm-sensors.org
209 S:      Maintained
210 F:      drivers/hwmon/abituguru3.c
211
212 ACENIC DRIVER
213 M:      Jes Sorensen <jes@trained-monkey.org>
214 L:      linux-acenic@sunsite.dk
215 S:      Maintained
216 F:      drivers/net/ethernet/alteon/acenic*
217
218 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
219 M:      Peter Feuerer <peter@piie.net>
220 L:      platform-driver-x86@vger.kernel.org
221 W:      http://piie.net/?section=acerhdf
222 S:      Maintained
223 F:      drivers/platform/x86/acerhdf.c
224
225 ACER WMI LAPTOP EXTRAS
226 M:      Joey Lee <jlee@novell.com>
227 L:      platform-driver-x86@vger.kernel.org
228 S:      Maintained
229 F:      drivers/platform/x86/acer-wmi.c
230
231 ACPI
232 M:      Len Brown <lenb@kernel.org>
233 L:      linux-acpi@vger.kernel.org
234 W:      http://www.lesswatts.org/projects/acpi/
235 Q:      http://patchwork.kernel.org/project/linux-acpi/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
237 S:      Supported
238 F:      drivers/acpi/
239 F:      drivers/pnp/pnpacpi/
240 F:      include/linux/acpi.h
241 F:      include/acpi/
242
243 ACPI FAN DRIVER
244 M:      Zhang Rui <rui.zhang@intel.com>
245 L:      linux-acpi@vger.kernel.org
246 W:      http://www.lesswatts.org/projects/acpi/
247 S:      Supported
248 F:      drivers/acpi/fan.c
249
250 ACPI PROCESSOR AGGREGATOR DRIVER
251 M:      Shaohua Li <shaohua.li@intel.com>
252 L:      linux-acpi@vger.kernel.org
253 W:      http://www.lesswatts.org/projects/acpi/
254 S:      Supported
255 F:      drivers/acpi/acpi_pad.c
256
257 ACPI THERMAL DRIVER
258 M:      Zhang Rui <rui.zhang@intel.com>
259 L:      linux-acpi@vger.kernel.org
260 W:      http://www.lesswatts.org/projects/acpi/
261 S:      Supported
262 F:      drivers/acpi/*thermal*
263
264 ACPI VIDEO DRIVER
265 M:      Zhang Rui <rui.zhang@intel.com>
266 L:      linux-acpi@vger.kernel.org
267 W:      http://www.lesswatts.org/projects/acpi/
268 S:      Supported
269 F:      drivers/acpi/video.c
270
271 ACPI WMI DRIVER
272 L:      platform-driver-x86@vger.kernel.org
273 S:      Orphan
274 F:      drivers/platform/x86/wmi.c
275
276 AD1889 ALSA SOUND DRIVER
277 M:      Kyle McMartin <kyle@mcmartin.ca>
278 M:      Thibaut Varene <T-Bone@parisc-linux.org>
279 W:      http://wiki.parisc-linux.org/AD1889
280 L:      linux-parisc@vger.kernel.org
281 S:      Maintained
282 F:      sound/pci/ad1889.*
283
284 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
285 M:      Michael Hennerich <michael.hennerich@analog.com>
286 L:      device-drivers-devel@blackfin.uclinux.org
287 W:      http://wiki.analog.com/AD5254
288 S:      Supported
289 F:      drivers/misc/ad525x_dpot.c
290
291 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
292 M:      Michael Hennerich <michael.hennerich@analog.com>
293 L:      device-drivers-devel@blackfin.uclinux.org
294 W:      http://wiki.analog.com/AD5398
295 S:      Supported
296 F:      drivers/regulator/ad5398.c
297
298 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
299 M:      Michael Hennerich <michael.hennerich@analog.com>
300 L:      device-drivers-devel@blackfin.uclinux.org
301 W:      http://wiki.analog.com/AD7142
302 S:      Supported
303 F:      drivers/input/misc/ad714x.c
304
305 AD7877 TOUCHSCREEN DRIVER
306 M:      Michael Hennerich <michael.hennerich@analog.com>
307 L:      device-drivers-devel@blackfin.uclinux.org
308 W:      http://wiki.analog.com/AD7877
309 S:      Supported
310 F:      drivers/input/touchscreen/ad7877.c
311
312 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
313 M:      Michael Hennerich <michael.hennerich@analog.com>
314 L:      device-drivers-devel@blackfin.uclinux.org
315 W:      http://wiki.analog.com/AD7879
316 S:      Supported
317 F:      drivers/input/touchscreen/ad7879.c
318
319 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
320 M:      Jiri Kosina <jkosina@suse.cz>
321 S:      Maintained
322
323 ADM1025 HARDWARE MONITOR DRIVER
324 M:      Jean Delvare <khali@linux-fr.org>
325 L:      lm-sensors@lm-sensors.org
326 S:      Maintained
327 F:      Documentation/hwmon/adm1025
328 F:      drivers/hwmon/adm1025.c
329
330 ADM1029 HARDWARE MONITOR DRIVER
331 M:      Corentin Labbe <corentin.labbe@geomatys.fr>
332 L:      lm-sensors@lm-sensors.org
333 S:      Maintained
334 F:      drivers/hwmon/adm1029.c
335
336 ADM8211 WIRELESS DRIVER
337 L:      linux-wireless@vger.kernel.org
338 W:      http://linuxwireless.org/
339 S:      Orphan
340 F:      drivers/net/wireless/adm8211.*
341
342 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 L:      device-drivers-devel@blackfin.uclinux.org
345 W:      http://wiki.analog.com/ADP5520
346 S:      Supported
347 F:      drivers/mfd/adp5520.c
348 F:      drivers/video/backlight/adp5520_bl.c
349 F:      drivers/leds/leds-adp5520.c
350 F:      drivers/gpio/adp5520-gpio.c
351 F:      drivers/input/keyboard/adp5520-keys.c
352
353 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354 M:      Michael Hennerich <michael.hennerich@analog.com>
355 L:      device-drivers-devel@blackfin.uclinux.org
356 W:      http://wiki.analog.com/ADP5588
357 S:      Supported
358 F:      drivers/input/keyboard/adp5588-keys.c
359 F:      drivers/gpio/adp5588-gpio.c
360
361 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362 M:      Michael Hennerich <michael.hennerich@analog.com>
363 L:      device-drivers-devel@blackfin.uclinux.org
364 W:      http://wiki.analog.com/ADP8860
365 S:      Supported
366 F:      drivers/video/backlight/adp8860_bl.c
367
368 ADS1015 HARDWARE MONITOR DRIVER
369 M:      Dirk Eibach <eibach@gdsys.de>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/ads1015
373 F:      drivers/hwmon/ads1015.c
374 F:      include/linux/i2c/ads1015.h
375
376 ADT746X FAN DRIVER
377 M:      Colin Leroy <colin@colino.net>
378 S:      Maintained
379 F:      drivers/macintosh/therm_adt746x.c
380
381 ADT7475 HARDWARE MONITOR DRIVER
382 M:      Jean Delvare <khali@linux-fr.org>
383 L:      lm-sensors@lm-sensors.org
384 S:      Maintained
385 F:      Documentation/hwmon/adt7475
386 F:      drivers/hwmon/adt7475.c
387
388 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
389 M:      Michael Hennerich <michael.hennerich@analog.com>
390 L:      device-drivers-devel@blackfin.uclinux.org
391 W:      http://wiki.analog.com/ADXL345
392 S:      Supported
393 F:      drivers/input/misc/adxl34x.c
394
395 ADVANSYS SCSI DRIVER
396 M:      Matthew Wilcox <matthew@wil.cx>
397 L:      linux-scsi@vger.kernel.org
398 S:      Maintained
399 F:      Documentation/scsi/advansys.txt
400 F:      drivers/scsi/advansys.c
401
402 AEDSP16 DRIVER
403 M:      Riccardo Facchetti <fizban@tin.it>
404 S:      Maintained
405 F:      sound/oss/aedsp16.c
406
407 AFFS FILE SYSTEM
408 L:      linux-fsdevel@vger.kernel.org
409 S:      Orphan
410 F:      Documentation/filesystems/affs.txt
411 F:      fs/affs/
412
413 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
414 M:      David Howells <dhowells@redhat.com>
415 L:      linux-afs@lists.infradead.org
416 S:      Supported
417 F:      fs/afs/
418 F:      include/net/af_rxrpc.h
419 F:      net/rxrpc/af_rxrpc.c
420
421 AGPGART DRIVER
422 M:      David Airlie <airlied@linux.ie>
423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
424 S:      Maintained
425 F:      drivers/char/agp/
426 F:      include/linux/agp*
427
428 AHA152X SCSI DRIVER
429 M:      "Juergen E. Fischer" <fischer@norbit.de>
430 L:      linux-scsi@vger.kernel.org
431 S:      Maintained
432 F:      drivers/scsi/aha152x*
433 F:      drivers/scsi/pcmcia/aha152x*
434
435 AIC7XXX / AIC79XX SCSI DRIVER
436 M:      Hannes Reinecke <hare@suse.de>
437 L:      linux-scsi@vger.kernel.org
438 S:      Maintained
439 F:      drivers/scsi/aic7xxx/
440 F:      drivers/scsi/aic7xxx_old/
441
442 AIO
443 M:      Benjamin LaHaise <bcrl@kvack.org>
444 L:      linux-aio@kvack.org
445 S:      Supported
446 F:      fs/aio.c
447 F:      include/linux/*aio*.h
448
449 ALCATEL SPEEDTOUCH USB DRIVER
450 M:      Duncan Sands <duncan.sands@free.fr>
451 L:      linux-usb@vger.kernel.org
452 W:      http://www.linux-usb.org/SpeedTouch/
453 S:      Maintained
454 F:      drivers/usb/atm/speedtch.c
455 F:      drivers/usb/atm/usbatm.c
456
457 ALCHEMY AU1XX0 MMC DRIVER
458 M:      Manuel Lauss <manuel.lauss@gmail.com>
459 S:      Maintained
460 F:      drivers/mmc/host/au1xmmc.c
461
462 ALI1563 I2C DRIVER
463 M:      Rudolf Marek <r.marek@assembler.cz>
464 L:      linux-i2c@vger.kernel.org
465 S:      Maintained
466 F:      Documentation/i2c/busses/i2c-ali1563
467 F:      drivers/i2c/busses/i2c-ali1563.c
468
469 ALPHA PORT
470 M:      Richard Henderson <rth@twiddle.net>
471 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
472 M:      Matt Turner <mattst88@gmail.com>
473 L:      linux-alpha@vger.kernel.org
474 F:      arch/alpha/
475
476 ALTERA UART/JTAG UART SERIAL DRIVERS
477 M:      Tobias Klauser <tklauser@distanz.ch>
478 L:      linux-serial@vger.kernel.org
479 L:      nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
480 S:      Maintained
481 F:      drivers/tty/serial/altera_uart.c
482 F:      drivers/tty/serial/altera_jtaguart.c
483 F:      include/linux/altera_uart.h
484 F:      include/linux/altera_jtaguart.h
485
486 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
487 M:      Andreas Herrmann <andreas.herrmann3@amd.com>
488 L:      lm-sensors@lm-sensors.org
489 S:      Maintained
490 F:      Documentation/hwmon/fam15h_power
491 F:      drivers/hwmon/fam15h_power.c
492
493 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
494 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
495 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
496 S:      Supported
497 F:      drivers/usb/gadget/amd5536udc.*
498
499 AMD GEODE PROCESSOR/CHIPSET SUPPORT
500 P:      Andres Salomon <dilinger@queued.net>
501 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
502 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
503 S:      Supported
504 F:      drivers/char/hw_random/geode-rng.c
505 F:      drivers/crypto/geode*
506 F:      drivers/video/geode/
507 F:      arch/x86/include/asm/geode.h
508
509 AMD IOMMU (AMD-VI)
510 M:      Joerg Roedel <joerg.roedel@amd.com>
511 L:      iommu@lists.linux-foundation.org
512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
513 S:      Supported
514 F:      arch/x86/kernel/amd_iommu*.c
515 F:      arch/x86/include/asm/amd_iommu*.h
516
517 AMD MICROCODE UPDATE SUPPORT
518 M:      Andreas Herrmann <andreas.herrmann3@amd.com>
519 L:      amd64-microcode@amd64.org
520 S:      Supported
521 F:      arch/x86/kernel/microcode_amd.c
522
523 AMS (Apple Motion Sensor) DRIVER
524 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
525 S:      Supported
526 F:      drivers/macintosh/ams/
527
528 AMSO1100 RNIC DRIVER
529 M:      Tom Tucker <tom@opengridcomputing.com>
530 M:      Steve Wise <swise@opengridcomputing.com>
531 L:      linux-rdma@vger.kernel.org
532 S:      Maintained
533 F:      drivers/infiniband/hw/amso1100/
534
535 ANALOG DEVICES INC ASOC CODEC DRIVERS
536 M:      Lars-Peter Clausen <lars@metafoo.de>
537 L:      device-drivers-devel@blackfin.uclinux.org
538 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
539 W:      http://wiki.analog.com/
540 S:      Supported
541 F:      sound/soc/codecs/adau*
542 F:      sound/soc/codecs/adav*
543 F:      sound/soc/codecs/ad1*
544 F:      sound/soc/codecs/ssm*
545
546 ANALOG DEVICES INC ASOC DRIVERS
547 L:      uclinux-dist-devel@blackfin.uclinux.org
548 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
549 W:      http://blackfin.uclinux.org/
550 S:      Supported
551 F:      sound/soc/blackfin/*
552
553 AOA (Apple Onboard Audio) ALSA DRIVER
554 M:      Johannes Berg <johannes@sipsolutions.net>
555 L:      linuxppc-dev@lists.ozlabs.org
556 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
557 S:      Maintained
558 F:      sound/aoa/
559
560 APM DRIVER
561 M:      Jiri Kosina <jkosina@suse.cz>
562 S:      Odd fixes
563 F:      arch/x86/kernel/apm_32.c
564 F:      include/linux/apm_bios.h
565 F:      drivers/char/apm-emulation.c
566
567 APPLE BCM5974 MULTITOUCH DRIVER
568 M:      Henrik Rydberg <rydberg@euromail.se>
569 L:      linux-input@vger.kernel.org
570 S:      Maintained
571 F:      drivers/input/mouse/bcm5974.c
572
573 APPLE SMC DRIVER
574 M:      Henrik Rydberg <rydberg@euromail.se>
575 L:      lm-sensors@lm-sensors.org
576 S:      Maintained
577 F:      drivers/hwmon/applesmc.c
578
579 APPLETALK NETWORK LAYER
580 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
581 S:      Maintained
582 F:      drivers/net/appletalk/
583 F:      net/appletalk/
584
585 ARASAN COMPACT FLASH PATA CONTROLLER
586 M:      Viresh Kumar <viresh.kumar@st.com>
587 L:      linux-ide@vger.kernel.org
588 S:      Maintained
589 F:      include/linux/pata_arasan_cf_data.h
590 F:      drivers/ata/pata_arasan_cf.c
591
592 ARC FRAMEBUFFER DRIVER
593 M:      Jaya Kumar <jayalk@intworks.biz>
594 S:      Maintained
595 F:      drivers/video/arcfb.c
596 F:      drivers/video/fb_defio.c
597
598 ARM MFM AND FLOPPY DRIVERS
599 M:      Ian Molton <spyro@f2s.com>
600 S:      Maintained
601 F:      arch/arm/lib/floppydma.S
602 F:      arch/arm/include/asm/floppy.h
603
604 ARM PMU PROFILING AND DEBUGGING
605 M:      Will Deacon <will.deacon@arm.com>
606 S:      Maintained
607 F:      arch/arm/kernel/perf_event*
608 F:      arch/arm/oprofile/common.c
609 F:      arch/arm/kernel/pmu.c
610 F:      arch/arm/include/asm/pmu.h
611 F:      arch/arm/kernel/hw_breakpoint.c
612 F:      arch/arm/include/asm/hw_breakpoint.h
613
614 ARM PORT
615 M:      Russell King <linux@arm.linux.org.uk>
616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
617 W:      http://www.arm.linux.org.uk/
618 S:      Maintained
619 F:      arch/arm/
620
621 ARM PRIMECELL AACI PL041 DRIVER
622 M:      Russell King <linux@arm.linux.org.uk>
623 S:      Maintained
624 F:      sound/arm/aaci.*
625
626 ARM PRIMECELL CLCD PL110 DRIVER
627 M:      Russell King <linux@arm.linux.org.uk>
628 S:      Maintained
629 F:      drivers/video/amba-clcd.*
630
631 ARM PRIMECELL KMI PL050 DRIVER
632 M:      Russell King <linux@arm.linux.org.uk>
633 S:      Maintained
634 F:      drivers/input/serio/ambakmi.*
635 F:      include/linux/amba/kmi.h
636
637 ARM PRIMECELL MMCI PL180/1 DRIVER
638 S:      Orphan
639 F:      drivers/mmc/host/mmci.*
640
641 ARM PRIMECELL BUS SUPPORT
642 M:      Russell King <linux@arm.linux.org.uk>
643 S:      Maintained
644 F:      drivers/amba/
645 F:      include/linux/amba/bus.h
646
647 ARM/ADI ROADRUNNER MACHINE SUPPORT
648 M:      Lennert Buytenhek <kernel@wantstofly.org>
649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
650 S:      Maintained
651 F:      arch/arm/mach-ixp23xx/
652 F:      arch/arm/mach-ixp23xx/include/mach/
653
654 ARM/ADS SPHERE MACHINE SUPPORT
655 M:      Lennert Buytenhek <kernel@wantstofly.org>
656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
657 S:      Maintained
658
659 ARM/AFEB9260 MACHINE SUPPORT
660 M:      Sergey Lapin <slapin@ossfans.org>
661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
662 S:      Maintained
663
664 ARM/AJECO 1ARM MACHINE SUPPORT
665 M:      Lennert Buytenhek <kernel@wantstofly.org>
666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
667 S:      Maintained
668
669 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
670 M:      Andrew Victor <linux@maxim.org.za>
671 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
672 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
674 W:      http://maxim.org.za/at91_26.html
675 W:      http://www.linux4sam.org
676 S:      Supported
677 F:      arch/arm/mach-at91/
678
679 ARM/BCMRING ARM ARCHITECTURE
680 M:      Jiandong Zheng <jdzheng@broadcom.com>
681 M:      Scott Branden <sbranden@broadcom.com>
682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
683 S:      Maintained
684 F:      arch/arm/mach-bcmring
685
686 ARM/BCMRING MTD NAND DRIVER
687 M:      Jiandong Zheng <jdzheng@broadcom.com>
688 M:      Scott Branden <sbranden@broadcom.com>
689 L:      linux-mtd@lists.infradead.org
690 S:      Maintained
691 F:      drivers/mtd/nand/bcm_umi_nand.c
692 F:      drivers/mtd/nand/bcm_umi_bch.c
693 F:      drivers/mtd/nand/nand_bcm_umi.h
694
695 ARM/CALXEDA HIGHBANK ARCHITECTURE
696 M:      Rob Herring <rob.herring@calxeda.com>
697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
698 S:      Maintained
699 F:      arch/arm/mach-highbank/
700
701 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
702 M:      Anton Vorontsov <avorontsov@mvista.com>
703 S:      Maintained
704 F:      arch/arm/mach-cns3xxx/
705 T:      git git://git.infradead.org/users/cbou/linux-cns3xxx.git
706
707 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
708 M:      Hartley Sweeten <hsweeten@visionengravers.com>
709 M:      Ryan Mallon <rmallon@gmail.com>
710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
711 S:      Maintained
712 F:      arch/arm/mach-ep93xx/
713 F:      arch/arm/mach-ep93xx/include/mach/
714
715 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
716 M:      Lennert Buytenhek <kernel@wantstofly.org>
717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
718 S:      Maintained
719
720 ARM/CLKDEV SUPPORT
721 M:      Russell King <linux@arm.linux.org.uk>
722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
723 F:      arch/arm/include/asm/clkdev.h
724 F:      drivers/clk/clkdev.c
725
726 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
727 M:      Mike Rapoport <mike@compulab.co.il>
728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
729 S:      Maintained
730
731 ARM/CONTEC MICRO9 MACHINE SUPPORT
732 M:      Hubert Feurstein <hubert.feurstein@contec.at>
733 S:      Maintained
734 F:      arch/arm/mach-ep93xx/micro9.c
735
736 ARM/CORGI MACHINE SUPPORT
737 M:      Richard Purdie <rpurdie@rpsys.net>
738 S:      Maintained
739
740 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
741 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
743 T:      git git://git.berlios.de/gemini-board
744 S:      Maintained
745 F:      arch/arm/mach-gemini/
746
747 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
748 M:      Barry Song <baohua.song@csr.com>
749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
750 S:      Maintained
751 F:      arch/arm/mach-prima2/
752 F:      drivers/dma/sirf-dma*
753
754 ARM/EBSA110 MACHINE SUPPORT
755 M:      Russell King <linux@arm.linux.org.uk>
756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
757 W:      http://www.arm.linux.org.uk/
758 S:      Maintained
759 F:      arch/arm/mach-ebsa110/
760 F:      drivers/net/ethernet/amd/am79c961a.*
761
762 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
763 M:      Daniel Ribeiro <drwyrm@gmail.com>
764 M:      Stefan Schmidt <stefan@openezx.org>
765 M:      Harald Welte <laforge@openezx.org>
766 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
767 W:      http://www.openezx.org/
768 S:      Maintained
769 T:      topgit git://git.openezx.org/openezx.git
770 F:      arch/arm/mach-pxa/ezx.c
771
772 ARM/FARADAY FA526 PORT
773 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
775 S:      Maintained
776 T:      git git://git.berlios.de/gemini-board
777 F:      arch/arm/mm/*-fa*
778
779 ARM/FOOTBRIDGE ARCHITECTURE
780 M:      Russell King <linux@arm.linux.org.uk>
781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
782 W:      http://www.arm.linux.org.uk/
783 S:      Maintained
784 F:      arch/arm/include/asm/hardware/dec21285.h
785 F:      arch/arm/mach-footbridge/
786
787 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
788 M:      Sascha Hauer <kernel@pengutronix.de>
789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
790 S:      Maintained
791 T:      git git://git.pengutronix.de/git/imx/linux-2.6.git
792 F:      arch/arm/mach-mx*/
793 F:      arch/arm/mach-imx/
794 F:      arch/arm/plat-mxc/
795
796 ARM/FREESCALE IMX51
797 M:      Amit Kucheria <amit.kucheria@canonical.com>
798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
799 S:      Maintained
800 F:      arch/arm/mach-mx5/
801
802 ARM/FREESCALE IMX6
803 M:      Shawn Guo <shawn.guo@linaro.org>
804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
805 S:      Maintained
806 T:      git git://git.linaro.org/people/shawnguo/linux-2.6.git
807 F:      arch/arm/mach-imx/*imx6*
808
809 ARM/FREESCALE MXS ARM ARCHITECTURE
810 M:      Shawn Guo <shawn.guo@linaro.org>
811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
812 S:      Maintained
813 T:      git git://git.linaro.org/people/shawnguo/linux-2.6.git
814 F:      arch/arm/mach-mxs/
815
816 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
817 M:      Lennert Buytenhek <kernel@wantstofly.org>
818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
819 S:      Maintained
820
821 ARM/GUMSTIX MACHINE SUPPORT
822 M:      Steve Sakoman <sakoman@gmail.com>
823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824 S:      Maintained
825
826 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
827 M:      Philipp Zabel <philipp.zabel@gmail.com>
828 S:      Maintained
829 F:      arch/arm/mach-pxa/hx4700.c
830 F:      arch/arm/mach-pxa/include/mach/hx4700.h
831
832 ARM/HP JORNADA 7XX MACHINE SUPPORT
833 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
834 W:      www.jlime.com
835 S:      Maintained
836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
837 F:      arch/arm/mach-sa1100/jornada720.c
838 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
839
840 ARM/INCOME PXA270 SUPPORT
841 M:      Marek Vasut <marek.vasut@gmail.com>
842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
843 S:      Maintained
844 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
845
846 ARM/INTEL IOP32X ARM ARCHITECTURE
847 M:      Lennert Buytenhek <kernel@wantstofly.org>
848 M:      Dan Williams <dan.j.williams@intel.com>
849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
850 S:      Maintained
851
852 ARM/INTEL IOP33X ARM ARCHITECTURE
853 M:      Dan Williams <dan.j.williams@intel.com>
854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
855 S:      Maintained
856
857 ARM/INTEL IOP13XX ARM ARCHITECTURE
858 M:      Lennert Buytenhek <kernel@wantstofly.org>
859 M:      Dan Williams <dan.j.williams@intel.com>
860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
861 S:      Maintained
862
863 ARM/INTEL IQ81342EX MACHINE SUPPORT
864 M:      Lennert Buytenhek <kernel@wantstofly.org>
865 M:      Dan Williams <dan.j.williams@intel.com>
866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867 S:      Maintained
868
869 ARM/INTEL IXP2000 ARM ARCHITECTURE
870 M:      Lennert Buytenhek <kernel@wantstofly.org>
871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
872 S:      Maintained
873
874 ARM/INTEL IXDP2850 MACHINE SUPPORT
875 M:      Lennert Buytenhek <kernel@wantstofly.org>
876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877 S:      Maintained
878
879 ARM/INTEL IXP23XX ARM ARCHITECTURE
880 M:      Lennert Buytenhek <kernel@wantstofly.org>
881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
882 S:      Maintained
883
884 ARM/INTEL IXP4XX ARM ARCHITECTURE
885 M:      Imre Kaloz <kaloz@openwrt.org>
886 M:      Krzysztof Halasa <khc@pm.waw.pl>
887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
888 S:      Maintained
889 F:      arch/arm/mach-ixp4xx/
890
891 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
892 M:      Jonathan Cameron <jic23@cam.ac.uk>
893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894 S:      Maintained
895 F:      arch/arm/mach-pxa/stargate2.c
896 F:      drivers/pcmcia/pxa2xx_stargate2.c
897
898 ARM/INTEL XSC3 (MANZANO) ARM CORE
899 M:      Lennert Buytenhek <kernel@wantstofly.org>
900 M:      Dan Williams <dan.j.williams@intel.com>
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 S:      Maintained
903
904 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
905 M:      Lennert Buytenhek <kernel@wantstofly.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908
909 ARM/LOGICPD PXA270 MACHINE SUPPORT
910 M:      Lennert Buytenhek <kernel@wantstofly.org>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913
914 ARM/MAGICIAN MACHINE SUPPORT
915 M:      Philipp Zabel <philipp.zabel@gmail.com>
916 S:      Maintained
917
918 ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
919 M:      Lennert Buytenhek <kernel@wantstofly.org>
920 M:      Nicolas Pitre <nico@fluxnic.net>
921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
922 S:      Odd Fixes
923 F:      arch/arm/mach-loki/
924 F:      arch/arm/mach-kirkwood/
925 F:      arch/arm/mach-mv78xx0/
926 F:      arch/arm/mach-orion5x/
927 F:      arch/arm/plat-orion/
928
929 ARM/Orion SoC/Technologic Systems TS-78xx platform support
930 M:      Alexander Clouter <alex@digriz.org.uk>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 W:      http://www.digriz.org.uk/ts78xx/kernel
933 S:      Maintained
934 F:      arch/arm/mach-orion5x/ts78xx-*
935
936 ARM/MIOA701 MACHINE SUPPORT
937 M:      Robert Jarzmik <robert.jarzmik@free.fr>
938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 F:      arch/arm/mach-pxa/mioa701.c
940 S:      Maintained
941
942 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
943 M:      Michael Petchkovsky <mkpetch@internode.on.net>
944 S:      Maintained
945
946 ARM/NOMADIK ARCHITECTURE
947 M:      Alessandro Rubini <rubini@unipv.it>
948 M:      Linus Walleij <linus.walleij@stericsson.com>
949 M:      STEricsson <STEricsson_nomadik_linux@list.st.com>
950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951 S:      Maintained
952 F:      arch/arm/mach-nomadik/
953 F:      arch/arm/plat-nomadik/
954 F:      drivers/i2c/busses/i2c-nomadik.c
955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
956
957 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
958 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
959 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
960 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
961 S:      Supported
962
963 ARM/QUALCOMM MSM MACHINE SUPPORT
964 M:      David Brown <davidb@codeaurora.org>
965 M:      Daniel Walker <dwalker@fifo99.com>
966 M:      Bryan Huntsman <bryanh@codeaurora.org>
967 L:      linux-arm-msm@vger.kernel.org
968 F:      arch/arm/mach-msm/
969 F:      drivers/video/msm/
970 F:      drivers/mmc/host/msm_sdcc.c
971 F:      drivers/mmc/host/msm_sdcc.h
972 F:      drivers/tty/serial/msm_serial.h
973 F:      drivers/tty/serial/msm_serial.c
974 F:      drivers/platform/msm/
975 F:      drivers/*/pm8???-*
976 F:      include/linux/mfd/pm8xxx/
977 T:      git git://codeaurora.org/quic/kernel/davidb/linux-msm.git
978 S:      Maintained
979
980 ARM/TOSA MACHINE SUPPORT
981 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
982 M:      Dirk Opfer <dirk@opfer-online.de>
983 S:      Maintained
984
985 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
986 M:      Marek Vasut <marek.vasut@gmail.com>
987 L:      linux-arm-kernel@lists.infradead.org
988 W:      http://hackndev.com
989 S:      Maintained
990 F:      arch/arm/mach-pxa/include/mach/palmtx.h
991 F:      arch/arm/mach-pxa/palmtx.c
992 F:      arch/arm/mach-pxa/include/mach/palmt5.h
993 F:      arch/arm/mach-pxa/palmt5.c
994 F:      arch/arm/mach-pxa/include/mach/palmld.h
995 F:      arch/arm/mach-pxa/palmld.c
996 F:      arch/arm/mach-pxa/include/mach/palmte2.h
997 F:      arch/arm/mach-pxa/palmte2.c
998 F:      arch/arm/mach-pxa/include/mach/palmtc.h
999 F:      arch/arm/mach-pxa/palmtc.c
1000
1001 ARM/PALM TREO SUPPORT
1002 M:      Tomas Cech <sleep_walker@suse.cz>
1003 L:      linux-arm-kernel@lists.infradead.org
1004 W:      http://hackndev.com
1005 S:      Maintained
1006 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1007 F:      arch/arm/mach-pxa/palmtreo.c
1008
1009 ARM/PALMZ72 SUPPORT
1010 M:      Sergey Lapin <slapin@ossfans.org>
1011 L:      linux-arm-kernel@lists.infradead.org
1012 W:      http://hackndev.com
1013 S:      Maintained
1014 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1015 F:      arch/arm/mach-pxa/palmz72.c
1016
1017 ARM/PLEB SUPPORT
1018 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1019 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1020 S:      Maintained
1021
1022 ARM/PT DIGITAL BOARD PORT
1023 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 W:      http://www.arm.linux.org.uk/
1026 S:      Maintained
1027
1028 ARM/RADISYS ENP2611 MACHINE SUPPORT
1029 M:      Lennert Buytenhek <kernel@wantstofly.org>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032
1033 ARM/RISCPC ARCHITECTURE
1034 M:      Russell King <linux@arm.linux.org.uk>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 W:      http://www.arm.linux.org.uk/
1037 S:      Maintained
1038 F:      arch/arm/common/time-acorn.c
1039 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1040 F:      arch/arm/include/asm/hardware/ioc.h
1041 F:      arch/arm/include/asm/hardware/iomd.h
1042 F:      arch/arm/include/asm/hardware/memc.h
1043 F:      arch/arm/mach-rpc/
1044 F:      drivers/net/ethernet/8390/etherh.c
1045 F:      drivers/net/ethernet/i825xx/ether1*
1046 F:      drivers/net/ethernet/seeq/ether3*
1047 F:      drivers/scsi/arm/
1048
1049 ARM/SHARK MACHINE SUPPORT
1050 M:      Alexander Schulz <alex@shark-linux.de>
1051 W:      http://www.shark-linux.de/shark.html
1052 S:      Maintained
1053
1054 ARM/SAMSUNG ARM ARCHITECTURES
1055 M:      Ben Dooks <ben-linux@fluff.org>
1056 M:      Kukjin Kim <kgene.kim@samsung.com>
1057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058 W:      http://www.fluff.org/ben/linux/
1059 S:      Maintained
1060 F:      arch/arm/plat-samsung/
1061 F:      arch/arm/plat-s3c24xx/
1062 F:      arch/arm/plat-s5p/
1063 F:      drivers/*/*s3c2410*
1064 F:      drivers/*/*/*s3c2410*
1065
1066 ARM/S3C2410 ARM ARCHITECTURE
1067 M:      Ben Dooks <ben-linux@fluff.org>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 W:      http://www.fluff.org/ben/linux/
1070 S:      Maintained
1071 F:      arch/arm/mach-s3c2410/
1072
1073 ARM/S3C244x ARM ARCHITECTURE
1074 M:      Ben Dooks <ben-linux@fluff.org>
1075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1076 W:      http://www.fluff.org/ben/linux/
1077 S:      Maintained
1078 F:      arch/arm/mach-s3c2440/
1079 F:      arch/arm/mach-s3c2443/
1080
1081 ARM/S3C64xx ARM ARCHITECTURE
1082 M:      Ben Dooks <ben-linux@fluff.org>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 W:      http://www.fluff.org/ben/linux/
1085 S:      Maintained
1086 F:      arch/arm/mach-s3c64xx/
1087
1088 ARM/S5P EXYNOS ARM ARCHITECTURES
1089 M:      Kukjin Kim <kgene.kim@samsung.com>
1090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1092 S:      Maintained
1093 F:      arch/arm/mach-s5p*/
1094 F:      arch/arm/mach-exynos*/
1095
1096 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1097 M:      Kyungmin Park <kyungmin.park@samsung.com>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100 F:      arch/arm/mach-s5pv210/mach-aquila.c
1101 F:      arch/arm/mach-s5pv210/mach-goni.c
1102 F:      arch/arm/mach-exynos4/mach-universal_c210.c
1103 F:      arch/arm/mach-exynos4/mach-nuri.c
1104
1105 ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1106 M:      Kyungmin Park <kyungmin.park@samsung.com>
1107 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
1108 L:      linux-arm-kernel@lists.infradead.org
1109 L:      linux-media@vger.kernel.org
1110 S:      Maintained
1111 F:      arch/arm/plat-s5p/dev-fimc*
1112 F:      arch/arm/plat-samsung/include/plat/*fimc*
1113 F:      drivers/media/video/s5p-fimc/
1114
1115 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1116 M:      Kyungmin Park <kyungmin.park@samsung.com>
1117 M:      Kamil Debski <k.debski@samsung.com>
1118 M:     Jeongtae Park <jtp.park@samsung.com>
1119 L:      linux-arm-kernel@lists.infradead.org
1120 L:      linux-media@vger.kernel.org
1121 S:      Maintained
1122 F:      arch/arm/plat-s5p/dev-mfc.c
1123 F:      drivers/media/video/s5p-mfc/
1124
1125 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1126 M:      Kyungmin Park <kyungmin.park@samsung.com>
1127 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1128 L:      linux-arm-kernel@lists.infradead.org
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      arch/arm/plat-s5p/dev-tv.c
1132 F:      drivers/media/video/s5p-tv/
1133
1134 ARM/SHMOBILE ARM ARCHITECTURE
1135 M:      Paul Mundt <lethal@linux-sh.org>
1136 M:      Magnus Damm <magnus.damm@gmail.com>
1137 L:      linux-sh@vger.kernel.org
1138 W:      http://oss.renesas.com
1139 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
1141 S:      Supported
1142 F:      arch/arm/mach-shmobile/
1143 F:      drivers/sh/
1144
1145 ARM/TELECHIPS ARM ARCHITECTURE
1146 M:      "Hans J. Koch" <hjk@hansjkoch.de>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 F:      arch/arm/plat-tcc/
1150 F:      arch/arm/mach-tcc8k/
1151
1152 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1153 M:      Lennert Buytenhek <kernel@wantstofly.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/TETON BGA MACHINE SUPPORT
1158 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 S:      Maintained
1161
1162 ARM/THECUS N2100 MACHINE SUPPORT
1163 M:      Lennert Buytenhek <kernel@wantstofly.org>
1164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1165 S:      Maintained
1166
1167 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1168 M:      Wan ZongShun <mcuos.com@gmail.com>
1169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 W:      http://www.mcuos.com
1171 S:      Maintained
1172 F:      arch/arm/mach-w90x900/
1173 F:      arch/arm/mach-nuc93x/
1174 F:      drivers/input/keyboard/w90p910_keypad.c
1175 F:      drivers/input/touchscreen/w90p910_ts.c
1176 F:      drivers/watchdog/nuc900_wdt.c
1177 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1178 F:      drivers/mtd/nand/nuc900_nand.c
1179 F:      drivers/rtc/rtc-nuc900.c
1180 F:      drivers/spi/spi_nuc900.c
1181 F:      drivers/usb/host/ehci-w90x900.c
1182 F:      drivers/video/nuc900fb.c
1183
1184 ARM/U300 MACHINE SUPPORT
1185 M:      Linus Walleij <linus.walleij@stericsson.com>
1186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187 S:      Supported
1188 F:      arch/arm/mach-u300/
1189 F:      drivers/i2c/busses/i2c-stu300.c
1190 F:      drivers/rtc/rtc-coh901331.c
1191 F:      drivers/watchdog/coh901327_wdt.c
1192 F:      drivers/dma/coh901318*
1193 F:      drivers/mfd/ab3100*
1194 F:      drivers/rtc/rtc-ab3100.c
1195 F:      drivers/rtc/rtc-coh901331.c
1196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1197
1198 ARM/Ux500 ARM ARCHITECTURE
1199 M:      Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
1200 M:      Linus Walleij <linus.walleij@stericsson.com>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-ux500/
1204 F:      drivers/dma/ste_dma40*
1205 F:      drivers/mfd/ab3550*
1206 F:      drivers/mfd/abx500*
1207 F:      drivers/mfd/ab8500*
1208 F:      drivers/mfd/stmpe*
1209 F:      drivers/rtc/rtc-ab8500.c
1210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1211
1212 ARM/VFP SUPPORT
1213 M:      Russell King <linux@arm.linux.org.uk>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 W:      http://www.arm.linux.org.uk/
1216 S:      Maintained
1217 F:      arch/arm/vfp/
1218
1219 ARM/VOIPAC PXA270 SUPPORT
1220 M:      Marek Vasut <marek.vasut@gmail.com>
1221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222 S:      Maintained
1223 F:      arch/arm/mach-pxa/vpac270.c
1224 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1225
1226 ARM/ZIPIT Z2 SUPPORT
1227 M:      Marek Vasut <marek.vasut@gmail.com>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      arch/arm/mach-pxa/z2.c
1231 F:      arch/arm/mach-pxa/include/mach/z2.h
1232
1233 ASC7621 HARDWARE MONITOR DRIVER
1234 M:      George Joseph <george.joseph@fairview5.com>
1235 L:      lm-sensors@lm-sensors.org
1236 S:      Maintained
1237 F:      Documentation/hwmon/asc7621
1238 F:      drivers/hwmon/asc7621.c
1239
1240 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1241 M:      Corentin Chary <corentincj@iksaif.net>
1242 L:      acpi4asus-user@lists.sourceforge.net
1243 L:      platform-driver-x86@vger.kernel.org
1244 W:      http://acpi4asus.sf.net
1245 S:      Maintained
1246 F:      drivers/platform/x86/asus*.c
1247 F:      drivers/platform/x86/eeepc*.c
1248
1249 ASUS ASB100 HARDWARE MONITOR DRIVER
1250 M:      "Mark M. Hoffman" <mhoffman@lightlink.com>
1251 L:      lm-sensors@lm-sensors.org
1252 S:      Maintained
1253 F:      drivers/hwmon/asb100.c
1254
1255 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1256 M:      Dan Williams <dan.j.williams@intel.com>
1257 W:      http://sourceforge.net/projects/xscaleiop
1258 S:      Supported
1259 F:      Documentation/crypto/async-tx-api.txt
1260 F:      crypto/async_tx/
1261 F:      drivers/dma/
1262 F:      include/linux/dmaengine.h
1263 F:      include/linux/async_tx.h
1264
1265 AT24 EEPROM DRIVER
1266 M:      Wolfram Sang <w.sang@pengutronix.de>
1267 L:      linux-i2c@vger.kernel.org
1268 S:      Maintained
1269 F:      drivers/misc/eeprom/at24.c
1270 F:      include/linux/i2c/at24.h
1271
1272 ATA OVER ETHERNET (AOE) DRIVER
1273 M:      "Ed L. Cashin" <ecashin@coraid.com>
1274 W:      http://www.coraid.com/support/linux
1275 S:      Supported
1276 F:      Documentation/aoe/
1277 F:      drivers/block/aoe/
1278
1279 ATHEROS ATH GENERIC UTILITIES
1280 M:      "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1281 L:      linux-wireless@vger.kernel.org
1282 S:      Supported
1283 F:      drivers/net/wireless/ath/*
1284
1285 ATHEROS ATH5K WIRELESS DRIVER
1286 M:      Jiri Slaby <jirislaby@gmail.com>
1287 M:      Nick Kossifidis <mickflemm@gmail.com>
1288 M:      "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1289 M:      Bob Copeland <me@bobcopeland.com>
1290 L:      linux-wireless@vger.kernel.org
1291 L:      ath5k-devel@lists.ath5k.org
1292 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1293 S:      Maintained
1294 F:      drivers/net/wireless/ath/ath5k/
1295
1296 ATHEROS ATH6KL WIRELESS DRIVER
1297 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1298 L:      linux-wireless@vger.kernel.org
1299 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1301 S:      Supported
1302 F:      drivers/net/wireless/ath/ath6kl/
1303
1304 ATHEROS ATH9K WIRELESS DRIVER
1305 M:      "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1306 M:      Jouni Malinen <jouni@qca.qualcomm.com>
1307 M:      Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1308 M:      Senthil Balasubramanian <senthilb@qca.qualcomm.com>
1309 L:      linux-wireless@vger.kernel.org
1310 L:      ath9k-devel@lists.ath9k.org
1311 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
1312 S:      Supported
1313 F:      drivers/net/wireless/ath/ath9k/
1314
1315 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1316 M:      Christian Lamparter <chunkeey@googlemail.com>
1317 L:      linux-wireless@vger.kernel.org
1318 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1319 S:      Maintained
1320 F:      drivers/net/wireless/ath/carl9170/
1321
1322 ATK0110 HWMON DRIVER
1323 M:      Luca Tettamanti <kronos.it@gmail.com>
1324 L:      lm-sensors@lm-sensors.org
1325 S:      Maintained
1326 F:      drivers/hwmon/asus_atk0110.c
1327
1328 ATI_REMOTE2 DRIVER
1329 M:      Ville Syrjala <syrjala@sci.fi>
1330 S:      Maintained
1331 F:      drivers/input/misc/ati_remote2.c
1332
1333 ATLX ETHERNET DRIVERS
1334 M:      Jay Cliburn <jcliburn@gmail.com>
1335 M:      Chris Snook <chris.snook@gmail.com>
1336 L:      netdev@vger.kernel.org
1337 W:      http://sourceforge.net/projects/atl1
1338 W:      http://atl1.sourceforge.net
1339 S:      Maintained
1340 F:      drivers/net/ethernet/atheros/
1341
1342 ATM
1343 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1344 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1345 L:      netdev@vger.kernel.org
1346 W:      http://linux-atm.sourceforge.net
1347 S:      Maintained
1348 F:      drivers/atm/
1349 F:      include/linux/atm*
1350
1351 ATMEL AT91 MCI DRIVER
1352 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354 W:      http://www.atmel.com/products/AT91/
1355 W:      http://www.at91.com/
1356 S:      Maintained
1357 F:      drivers/mmc/host/at91_mci.c
1358
1359 ATMEL AT91 / AT32 MCI DRIVER
1360 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1361 S:      Maintained
1362 F:      drivers/mmc/host/atmel-mci.c
1363 F:      drivers/mmc/host/atmel-mci-regs.h
1364
1365 ATMEL AT91 / AT32 SERIAL DRIVER
1366 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1367 S:      Supported
1368 F:      drivers/tty/serial/atmel_serial.c
1369
1370 ATMEL LCDFB DRIVER
1371 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1372 L:      linux-fbdev@vger.kernel.org
1373 S:      Maintained
1374 F:      drivers/video/atmel_lcdfb.c
1375 F:      include/video/atmel_lcdc.h
1376
1377 ATMEL MACB ETHERNET DRIVER
1378 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1379 S:      Supported
1380 F:      drivers/net/ethernet/cadence/
1381
1382 ATMEL SPI DRIVER
1383 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1384 S:      Supported
1385 F:      drivers/spi/atmel_spi.*
1386
1387 ATMEL USBA UDC DRIVER
1388 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 W:      http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1391 S:      Supported
1392 F:      drivers/usb/gadget/atmel_usba_udc.*
1393
1394 ATMEL WIRELESS DRIVER
1395 M:      Simon Kelley <simon@thekelleys.org.uk>
1396 L:      linux-wireless@vger.kernel.org
1397 W:      http://www.thekelleys.org.uk/atmel
1398 W:      http://atmelwlandriver.sourceforge.net/
1399 S:      Maintained
1400 F:      drivers/net/wireless/atmel*
1401
1402 AUDIT SUBSYSTEM
1403 M:      Al Viro <viro@zeniv.linux.org.uk>
1404 M:      Eric Paris <eparis@redhat.com>
1405 L:      linux-audit@redhat.com (subscribers-only)
1406 W:      http://people.redhat.com/sgrubb/audit/
1407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
1408 S:      Maintained
1409 F:      include/linux/audit.h
1410 F:      kernel/audit*
1411
1412 AUXILIARY DISPLAY DRIVERS
1413 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1414 W:      http://miguelojeda.es/auxdisplay.htm
1415 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1416 S:      Maintained
1417 F:      drivers/auxdisplay/
1418 F:      include/linux/cfag12864b.h
1419
1420 AVR32 ARCHITECTURE
1421 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1422 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1423 W:      http://www.atmel.com/products/AVR32/
1424 W:      http://avr32linux.org/
1425 W:      http://avrfreaks.net/
1426 S:      Maintained
1427 F:      arch/avr32/
1428
1429 AVR32/AT32AP MACHINE SUPPORT
1430 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1431 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1432 S:      Maintained
1433 F:      arch/avr32/mach-at32ap/
1434
1435 AX.25 NETWORK LAYER
1436 M:      Ralf Baechle <ralf@linux-mips.org>
1437 L:      linux-hams@vger.kernel.org
1438 W:      http://www.linux-ax25.org/
1439 S:      Maintained
1440 F:      include/linux/ax25.h
1441 F:      include/net/ax25.h
1442 F:      net/ax25/
1443
1444 B43 WIRELESS DRIVER
1445 M:      Stefano Brivio <stefano.brivio@polimi.it>
1446 L:      linux-wireless@vger.kernel.org
1447 W:      http://linuxwireless.org/en/users/Drivers/b43
1448 S:      Maintained
1449 F:      drivers/net/wireless/b43/
1450
1451 B43LEGACY WIRELESS DRIVER
1452 M:      Larry Finger <Larry.Finger@lwfinger.net>
1453 M:      Stefano Brivio <stefano.brivio@polimi.it>
1454 L:      linux-wireless@vger.kernel.org
1455 W:      http://linuxwireless.org/en/users/Drivers/b43
1456 S:      Maintained
1457 F:      drivers/net/wireless/b43legacy/
1458
1459 BACKLIGHT CLASS/SUBSYSTEM
1460 M:      Richard Purdie <rpurdie@rpsys.net>
1461 S:      Maintained
1462 F:      drivers/video/backlight/
1463 F:      include/linux/backlight.h
1464
1465 BATMAN ADVANCED
1466 M:      Marek Lindner <lindner_marek@yahoo.de>
1467 M:      Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
1468 L:      b.a.t.m.a.n@lists.open-mesh.org
1469 W:      http://www.open-mesh.org/
1470 S:      Maintained
1471 F:      net/batman-adv/
1472
1473 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1474 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1475 L:      linux-hams@vger.kernel.org
1476 W:      http://www.baycom.org/~tom/ham/ham.html
1477 S:      Maintained
1478 F:      drivers/net/hamradio/baycom*
1479
1480 BEFS FILE SYSTEM
1481 S:      Orphan
1482 F:      Documentation/filesystems/befs.txt
1483 F:      fs/befs/
1484
1485 BFS FILE SYSTEM
1486 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1487 S:      Maintained
1488 F:      Documentation/filesystems/bfs.txt
1489 F:      fs/bfs/
1490 F:      include/linux/bfs_fs.h
1491
1492 BLACKFIN ARCHITECTURE
1493 M:      Mike Frysinger <vapier@gentoo.org>
1494 L:      uclinux-dist-devel@blackfin.uclinux.org
1495 W:      http://blackfin.uclinux.org
1496 S:      Supported
1497 F:      arch/blackfin/
1498
1499 BLACKFIN EMAC DRIVER
1500 L:      uclinux-dist-devel@blackfin.uclinux.org
1501 W:      http://blackfin.uclinux.org
1502 S:      Supported
1503 F:      drivers/net/ethernet/adi/
1504
1505 BLACKFIN RTC DRIVER
1506 M:      Mike Frysinger <vapier.adi@gmail.com>
1507 L:      uclinux-dist-devel@blackfin.uclinux.org
1508 W:      http://blackfin.uclinux.org
1509 S:      Supported
1510 F:      drivers/rtc/rtc-bfin.c
1511
1512 BLACKFIN SDH DRIVER
1513 M:      Cliff Cai <cliff.cai@analog.com>
1514 L:      uclinux-dist-devel@blackfin.uclinux.org
1515 W:      http://blackfin.uclinux.org
1516 S:      Supported
1517 F:      drivers/mmc/host/bfin_sdh.c
1518
1519 BLACKFIN SERIAL DRIVER
1520 M:      Sonic Zhang <sonic.zhang@analog.com>
1521 L:      uclinux-dist-devel@blackfin.uclinux.org
1522 W:      http://blackfin.uclinux.org
1523 S:      Supported
1524 F:      drivers/tty/serial/bfin_5xx.c
1525
1526 BLACKFIN WATCHDOG DRIVER
1527 M:      Mike Frysinger <vapier.adi@gmail.com>
1528 L:      uclinux-dist-devel@blackfin.uclinux.org
1529 W:      http://blackfin.uclinux.org
1530 S:      Supported
1531 F:      drivers/watchdog/bfin_wdt.c
1532
1533 BLACKFIN I2C TWI DRIVER
1534 M:      Sonic Zhang <sonic.zhang@analog.com>
1535 L:      uclinux-dist-devel@blackfin.uclinux.org
1536 W:      http://blackfin.uclinux.org/
1537 S:      Supported
1538 F:      drivers/i2c/busses/i2c-bfin-twi.c
1539
1540 BLOCK LAYER
1541 M:      Jens Axboe <axboe@kernel.dk>
1542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
1543 S:      Maintained
1544 F:      block/
1545
1546 BLOCK2MTD DRIVER
1547 M:      Joern Engel <joern@lazybastard.org>
1548 L:      linux-mtd@lists.infradead.org
1549 S:      Maintained
1550 F:      drivers/mtd/devices/block2mtd.c
1551
1552 BLUETOOTH DRIVERS
1553 M:      Marcel Holtmann <marcel@holtmann.org>
1554 M:      "Gustavo F. Padovan" <padovan@profusion.mobi>
1555 L:      linux-bluetooth@vger.kernel.org
1556 W:      http://www.bluez.org/
1557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
1558 S:      Maintained
1559 F:      drivers/bluetooth/
1560
1561 BLUETOOTH SUBSYSTEM
1562 M:      Marcel Holtmann <marcel@holtmann.org>
1563 M:      "Gustavo F. Padovan" <padovan@profusion.mobi>
1564 L:      linux-bluetooth@vger.kernel.org
1565 W:      http://www.bluez.org/
1566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
1567 S:      Maintained
1568 F:      net/bluetooth/
1569 F:      include/net/bluetooth/
1570
1571 BONDING DRIVER
1572 M:      Jay Vosburgh <fubar@us.ibm.com>
1573 M:      Andy Gospodarek <andy@greyhouse.net>
1574 L:      netdev@vger.kernel.org
1575 W:      http://sourceforge.net/projects/bonding/
1576 S:      Supported
1577 F:      drivers/net/bonding/
1578 F:      include/linux/if_bonding.h
1579
1580 BROADCOM B44 10/100 ETHERNET DRIVER
1581 M:      Gary Zambrano <zambrano@broadcom.com>
1582 L:      netdev@vger.kernel.org
1583 S:      Supported
1584 F:      drivers/net/ethernet/broadcom/b44.*
1585
1586 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1587 M:      Michael Chan <mchan@broadcom.com>
1588 L:      netdev@vger.kernel.org
1589 S:      Supported
1590 F:      drivers/net/ethernet/broadcom/bnx2.*
1591 F:      drivers/net/ethernet/broadcom/bnx2_*
1592
1593 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1594 M:      Eilon Greenstein <eilong@broadcom.com>
1595 L:      netdev@vger.kernel.org
1596 S:      Supported
1597 F:      drivers/net/ethernet/broadcom/bnx2x/
1598
1599 BROADCOM TG3 GIGABIT ETHERNET DRIVER
1600 M:      Matt Carlson <mcarlson@broadcom.com>
1601 M:      Michael Chan <mchan@broadcom.com>
1602 L:      netdev@vger.kernel.org
1603 S:      Supported
1604 F:      drivers/net/ethernet/broadcom/tg3.*
1605
1606 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1607 M:      Brett Rudley <brudley@broadcom.com>
1608 M:      Henry Ptasinski <henryp@broadcom.com>
1609 M:      Roland Vossen <rvossen@broadcom.com>
1610 M:      Arend van Spriel <arend@broadcom.com>
1611 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
1612 M:      Kan Yan <kanyan@broadcom.com>
1613 L:      linux-wireless@vger.kernel.org
1614 S:      Supported
1615 F:      drivers/staging/brcm80211/
1616
1617 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1618 M:      Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1619 L:      linux-scsi@vger.kernel.org
1620 S:      Supported
1621 F:      drivers/scsi/bnx2fc/
1622
1623 BROCADE BFA FC SCSI DRIVER
1624 M:      Jing Huang <huangj@brocade.com>
1625 L:      linux-scsi@vger.kernel.org
1626 S:      Supported
1627 F:      drivers/scsi/bfa/
1628
1629 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1630 M:      Rasesh Mody <rmody@brocade.com>
1631 L:      netdev@vger.kernel.org
1632 S:      Supported
1633 F:      drivers/net/ethernet/brocade/bna/
1634
1635 BSG (block layer generic sg v4 driver)
1636 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
1637 L:      linux-scsi@vger.kernel.org
1638 S:      Supported
1639 F:      block/bsg.c
1640 F:      include/linux/bsg.h
1641
1642 BT87X AUDIO DRIVER
1643 M:      Clemens Ladisch <clemens@ladisch.de>
1644 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1645 T:      git git://git.alsa-project.org/alsa-kernel.git
1646 S:      Maintained
1647 F:      Documentation/sound/alsa/Bt87x.txt
1648 F:      sound/pci/bt87x.c
1649
1650 BT8XXGPIO DRIVER
1651 M:      Michael Buesch <m@bues.ch>
1652 W:      http://bu3sch.de/btgpio.php
1653 S:      Maintained
1654 F:      drivers/gpio/bt8xxgpio.c
1655
1656 BTRFS FILE SYSTEM
1657 M:      Chris Mason <chris.mason@oracle.com>
1658 L:      linux-btrfs@vger.kernel.org
1659 W:      http://btrfs.wiki.kernel.org/
1660 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
1662 S:      Maintained
1663 F:      Documentation/filesystems/btrfs.txt
1664 F:      fs/btrfs/
1665
1666 BTTV VIDEO4LINUX DRIVER
1667 M:      Mauro Carvalho Chehab <mchehab@infradead.org>
1668 L:      linux-media@vger.kernel.org
1669 W:      http://linuxtv.org
1670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
1671 S:      Maintained
1672 F:      Documentation/video4linux/bttv/
1673 F:      drivers/media/video/bt8xx/bttv*
1674
1675 C-MEDIA CMI8788 DRIVER
1676 M:      Clemens Ladisch <clemens@ladisch.de>
1677 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1678 T:      git git://git.alsa-project.org/alsa-kernel.git
1679 S:      Maintained
1680 F:      sound/pci/oxygen/
1681
1682 C6X ARCHITECTURE
1683 M:      Mark Salter <msalter@redhat.com>
1684 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
1685 L:      linux-c6x-dev@linux-c6x.org
1686 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
1687 S:      Maintained
1688 F:      arch/c6x/
1689
1690 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1691 M:      David Howells <dhowells@redhat.com>
1692 L:      linux-cachefs@redhat.com
1693 S:      Supported
1694 F:      Documentation/filesystems/caching/cachefiles.txt
1695 F:      fs/cachefiles/
1696
1697 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
1698 M:      Jonathan Corbet <corbet@lwn.net>
1699 L:      linux-media@vger.kernel.org
1700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
1701 S:      Maintained
1702 F:      Documentation/video4linux/cafe_ccic
1703 F:      drivers/media/video/cafe_ccic*
1704
1705 CAIF NETWORK LAYER
1706 M:      Sjur Braendeland <sjur.brandeland@stericsson.com>
1707 L:      netdev@vger.kernel.org
1708 S:      Supported
1709 F:      Documentation/networking/caif/
1710 F:      drivers/net/caif/
1711 F:      include/linux/caif/
1712 F:      include/net/caif/
1713 F:      net/caif/
1714
1715 CALGARY x86-64 IOMMU
1716 M:      Muli Ben-Yehuda <muli@il.ibm.com>
1717 M:      "Jon D. Mason" <jdmason@kudzu.us>
1718 L:      discuss@x86-64.org
1719 S:      Maintained
1720 F:      arch/x86/kernel/pci-calgary_64.c
1721 F:      arch/x86/kernel/tce_64.c
1722 F:      arch/x86/include/asm/calgary.h
1723 F:      arch/x86/include/asm/tce.h
1724
1725 CAN NETWORK LAYER
1726 M:      Oliver Hartkopp <socketcan@hartkopp.net>
1727 M:      Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
1728 M:      Urs Thuermann <urs.thuermann@volkswagen.de>
1729 L:      linux-can@vger.kernel.org
1730 L:      netdev@vger.kernel.org
1731 W:      http://developer.berlios.de/projects/socketcan/
1732 S:      Maintained
1733 F:      net/can/
1734 F:      include/linux/can.h
1735 F:      include/linux/can/core.h
1736 F:      include/linux/can/bcm.h
1737 F:      include/linux/can/raw.h
1738 F:      include/linux/can/gw.h
1739
1740 CAN NETWORK DRIVERS
1741 M:      Wolfgang Grandegger <wg@grandegger.com>
1742 L:      linux-can@vger.kernel.org
1743 L:      netdev@vger.kernel.org
1744 W:      http://developer.berlios.de/projects/socketcan/
1745 S:      Maintained
1746 F:      drivers/net/can/
1747 F:      include/linux/can/dev.h
1748 F:      include/linux/can/error.h
1749 F:      include/linux/can/netlink.h
1750 F:      include/linux/can/platform/
1751
1752 CELL BROADBAND ENGINE ARCHITECTURE
1753 M:      Arnd Bergmann <arnd@arndb.de>
1754 L:      linuxppc-dev@lists.ozlabs.org
1755 L:      cbe-oss-dev@lists.ozlabs.org
1756 W:      http://www.ibm.com/developerworks/power/cell/
1757 S:      Supported
1758 F:      arch/powerpc/include/asm/cell*.h
1759 F:      arch/powerpc/include/asm/spu*.h
1760 F:      arch/powerpc/oprofile/*cell*
1761 F:      arch/powerpc/platforms/cell/
1762
1763 CEPH DISTRIBUTED FILE SYSTEM CLIENT
1764 M:      Sage Weil <sage@newdream.net>
1765 L:      ceph-devel@vger.kernel.org
1766 W:      http://ceph.newdream.net/
1767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
1768 S:      Supported
1769 F:      Documentation/filesystems/ceph.txt
1770 F:      fs/ceph
1771 F:      net/ceph
1772 F:      include/linux/ceph
1773
1774 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1775 L:      linux-usb@vger.kernel.org
1776 S:      Orphan
1777 F:      Documentation/usb/WUSB-Design-overview.txt
1778 F:      Documentation/usb/wusb-cbaf
1779 F:      drivers/usb/host/hwa-hc.c
1780 F:      drivers/usb/host/whci/
1781 F:      drivers/usb/wusbcore/
1782 F:      include/linux/usb/wusb*
1783
1784 CFAG12864B LCD DRIVER
1785 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1786 W:      http://miguelojeda.es/auxdisplay.htm
1787 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1788 S:      Maintained
1789 F:      drivers/auxdisplay/cfag12864b.c
1790 F:      include/linux/cfag12864b.h
1791
1792 CFAG12864BFB LCD FRAMEBUFFER DRIVER
1793 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1794 W:      http://miguelojeda.es/auxdisplay.htm
1795 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1796 S:      Maintained
1797 F:      drivers/auxdisplay/cfag12864bfb.c
1798 F:      include/linux/cfag12864b.h
1799
1800 CFG80211 and NL80211
1801 M:      Johannes Berg <johannes@sipsolutions.net>
1802 L:      linux-wireless@vger.kernel.org
1803 S:      Maintained
1804 F:      include/linux/nl80211.h
1805 F:      include/net/cfg80211.h
1806 F:      net/wireless/*
1807 X:      net/wireless/wext*
1808
1809 CHAR and MISC DRIVERS
1810 M:      Arnd Bergmann <arnd@arndb.de>
1811 M:      Greg Kroah-Hartman <greg@kroah.com>
1812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
1813 S:      Maintained
1814 F:      drivers/char/*
1815 F:      drivers/misc/*
1816
1817 CHECKPATCH
1818 M:      Andy Whitcroft <apw@canonical.com>
1819 S:      Supported
1820 F:      scripts/checkpatch.pl
1821
1822 CHINESE DOCUMENTATION
1823 M:      Harry Wei <harryxiyou@gmail.com>
1824 L:      xiyoulinuxkernelgroup@googlegroups.com
1825 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
1826 S:      Maintained
1827 F:      Documentation/zh_CN/
1828
1829 CISCO VIC ETHERNET NIC DRIVER
1830 M:      Christian Benvenuti <benve@cisco.com>
1831 M:      Roopa Prabhu <roprabhu@cisco.com>
1832 M:      David Wang <dwang2@cisco.com>
1833 S:      Supported
1834 F:      drivers/net/ethernet/cisco/enic/
1835
1836 CIRRUS LOGIC EP93XX ETHERNET DRIVER
1837 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1838 L:      netdev@vger.kernel.org
1839 S:      Maintained
1840 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
1841
1842 CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1843 M:      Lennert Buytenhek <kernel@wantstofly.org>
1844 L:      linux-usb@vger.kernel.org
1845 S:      Maintained
1846 F:      drivers/usb/host/ohci-ep93xx.c
1847
1848 CIRRUS LOGIC CS4270 SOUND DRIVER
1849 M:      Timur Tabi <timur@freescale.com>
1850 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1851 S:      Supported
1852 F:      sound/soc/codecs/cs4270*
1853
1854 CLK API
1855 M:      Russell King <linux@arm.linux.org.uk>
1856 F:      include/linux/clk.h
1857
1858 CISCO FCOE HBA DRIVER
1859 M:      Abhijeet Joglekar <abjoglek@cisco.com>
1860 M:      Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1861 M:      Brian Uchino <buchino@cisco.com>
1862 L:      linux-scsi@vger.kernel.org
1863 S:      Supported
1864 F:      drivers/scsi/fnic/
1865
1866 CMPC ACPI DRIVER
1867 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1868 M:      Daniel Oliveira Nascimento <don@syst.com.br>
1869 L:      platform-driver-x86@vger.kernel.org
1870 S:      Supported
1871 F:      drivers/platform/x86/classmate-laptop.c
1872
1873 COCCINELLE/Semantic Patches (SmPL)
1874 M:      Julia Lawall <julia@diku.dk>
1875 M:      Gilles Muller <Gilles.Muller@lip6.fr>
1876 M:      Nicolas Palix <npalix.work@gmail.com>
1877 L:      cocci@diku.dk (moderated for non-subscribers)
1878 W:      http://coccinelle.lip6.fr/
1879 S:      Supported
1880 F:      scripts/coccinelle/
1881 F:      scripts/coccicheck
1882
1883 CODA FILE SYSTEM
1884 M:      Jan Harkes <jaharkes@cs.cmu.edu>
1885 M:      coda@cs.cmu.edu
1886 L:      codalist@coda.cs.cmu.edu
1887 W:      http://www.coda.cs.cmu.edu/
1888 S:      Maintained
1889 F:      Documentation/filesystems/coda.txt
1890 F:      fs/coda/
1891 F:      include/linux/coda*.h
1892
1893 COMMON INTERNET FILE SYSTEM (CIFS)
1894 M:      Steve French <sfrench@samba.org>
1895 L:      linux-cifs@vger.kernel.org
1896 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
1897 W:      http://linux-cifs.samba.org/
1898 Q:      http://patchwork.ozlabs.org/project/linux-cifs-client/list/
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
1900 S:      Supported
1901 F:      Documentation/filesystems/cifs.txt
1902 F:      fs/cifs/
1903
1904 COMPACTPCI HOTPLUG CORE
1905 M:      Scott Murray <scott@spiteful.org>
1906 L:      linux-pci@vger.kernel.org
1907 S:      Maintained
1908 F:      drivers/pci/hotplug/cpci_hotplug*
1909
1910 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1911 M:      Scott Murray <scott@spiteful.org>
1912 L:      linux-pci@vger.kernel.org
1913 S:      Maintained
1914 F:      drivers/pci/hotplug/cpcihp_zt5550.*
1915
1916 COMPACTPCI HOTPLUG GENERIC DRIVER
1917 M:      Scott Murray <scott@spiteful.org>
1918 L:      linux-pci@vger.kernel.org
1919 S:      Maintained
1920 F:      drivers/pci/hotplug/cpcihp_generic.c
1921
1922 COMPAL LAPTOP SUPPORT
1923 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
1924 L:      platform-driver-x86@vger.kernel.org
1925 S:      Maintained
1926 F:      drivers/platform/x86/compal-laptop.c
1927
1928 COMPUTONE INTELLIPORT MULTIPORT CARD
1929 W:      http://www.wittsend.com/computone.html
1930 S:      Orphan
1931 F:      Documentation/serial/computone.txt
1932 F:      drivers/staging/tty/ip2/
1933
1934 CONEXANT ACCESSRUNNER USB DRIVER
1935 M:      Simon Arlott <cxacru@fire.lp0.eu>
1936 L:      accessrunner-general@lists.sourceforge.net
1937 W:      http://accessrunner.sourceforge.net/
1938 S:      Maintained
1939 F:      drivers/usb/atm/cxacru.c
1940
1941 CONFIGFS
1942 M:      Joel Becker <jlbec@evilplan.org>
1943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
1944 S:      Supported
1945 F:      fs/configfs/
1946 F:      include/linux/configfs.h
1947
1948 CONNECTOR
1949 M:      Evgeniy Polyakov <zbr@ioremap.net>
1950 L:      netdev@vger.kernel.org
1951 S:      Maintained
1952 F:      drivers/connector/
1953
1954 CONTROL GROUPS (CGROUPS)
1955 M:      Tejun Heo <tj@kernel.org>
1956 M:      Li Zefan <lizf@cn.fujitsu.com>
1957 L:      containers@lists.linux-foundation.org
1958 L:      cgroups@vger.kernel.org
1959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
1960 S:      Maintained
1961 F:      include/linux/cgroup*
1962 F:      kernel/cgroup*
1963 F:      mm/*cgroup*
1964
1965 CORETEMP HARDWARE MONITORING DRIVER
1966 M:      Fenghua Yu <fenghua.yu@intel.com>
1967 L:      lm-sensors@lm-sensors.org
1968 S:      Maintained
1969 F:      Documentation/hwmon/coretemp
1970 F:      drivers/hwmon/coretemp.c
1971
1972 COSA/SRP SYNC SERIAL DRIVER
1973 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
1974 W:      http://www.fi.muni.cz/~kas/cosa/
1975 S:      Maintained
1976 F:      drivers/net/wan/cosa*
1977
1978 CPMAC ETHERNET DRIVER
1979 M:      Florian Fainelli <florian@openwrt.org>
1980 L:      netdev@vger.kernel.org
1981 S:      Maintained
1982 F:      drivers/net/ethernet/ti/cpmac.c
1983
1984 CPU FREQUENCY DRIVERS
1985 M:      Dave Jones <davej@redhat.com>
1986 L:      cpufreq@vger.kernel.org
1987 W:      http://www.codemonkey.org.uk/projects/cpufreq/
1988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
1989 S:      Maintained
1990 F:      drivers/cpufreq/
1991 F:      include/linux/cpufreq.h
1992
1993 CPUID/MSR DRIVER
1994 M:      "H. Peter Anvin" <hpa@zytor.com>
1995 S:      Maintained
1996 F:      arch/x86/kernel/cpuid.c
1997 F:      arch/x86/kernel/msr.c
1998
1999 CPU POWER MONITORING SUBSYSTEM
2000 M:      Dominik Brodowski <linux@dominikbrodowski.net>
2001 M:      Thomas Renninger <trenn@suse.de>
2002 S:      Maintained
2003 F:      tools/power/cpupower
2004
2005 CPUSETS
2006 M:      Paul Menage <paul@paulmenage.org>
2007 W:      http://www.bullopensource.org/cpuset/
2008 W:      http://oss.sgi.com/projects/cpusets/
2009 S:      Supported
2010 F:      Documentation/cgroups/cpusets.txt
2011 F:      include/linux/cpuset.h
2012 F:      kernel/cpuset.c
2013
2014 CRAMFS FILESYSTEM
2015 W:      http://sourceforge.net/projects/cramfs/
2016 S:      Orphan
2017 F:      Documentation/filesystems/cramfs.txt
2018 F:      fs/cramfs/
2019
2020 CRIS PORT
2021 M:      Mikael Starvik <starvik@axis.com>
2022 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2023 L:      linux-cris-kernel@axis.com
2024 W:      http://developer.axis.com
2025 S:      Maintained
2026 F:      arch/cris/
2027 F:      drivers/tty/serial/crisv10.*
2028
2029 CRYPTO API
2030 M:      Herbert Xu <herbert@gondor.apana.org.au>
2031 M:      "David S. Miller" <davem@davemloft.net>
2032 L:      linux-crypto@vger.kernel.org
2033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2034 S:      Maintained
2035 F:      Documentation/crypto/
2036 F:      arch/*/crypto/
2037 F:      crypto/
2038 F:      drivers/crypto/
2039 F:      include/crypto/
2040
2041 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2042 M:      Neil Horman <nhorman@tuxdriver.com>
2043 L:      linux-crypto@vger.kernel.org
2044 S:      Maintained
2045 F:      crypto/ansi_cprng.c
2046 F:      crypto/rng.c
2047
2048 CS5535 Audio ALSA driver
2049 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2050 S:      Maintained
2051 F:      sound/pci/cs5535audio/
2052
2053 CX18 VIDEO4LINUX DRIVER
2054 M:      Andy Walls <awalls@md.metrocast.net>
2055 L:      ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2056 L:      linux-media@vger.kernel.org
2057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2058 W:      http://linuxtv.org
2059 W:      http://www.ivtvdriver.org/index.php/Cx18
2060 S:      Maintained
2061 F:      Documentation/video4linux/cx18.txt
2062 F:      drivers/media/video/cx18/
2063
2064 CXGB3 ETHERNET DRIVER (CXGB3)
2065 M:      Divy Le Ray <divy@chelsio.com>
2066 L:      netdev@vger.kernel.org
2067 W:      http://www.chelsio.com
2068 S:      Supported
2069 F:      drivers/net/ethernet/chelsio/cxgb3/
2070
2071 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2072 M:      Steve Wise <swise@chelsio.com>
2073 L:      linux-rdma@vger.kernel.org
2074 W:      http://www.openfabrics.org
2075 S:      Supported
2076 F:      drivers/infiniband/hw/cxgb3/
2077
2078 CXGB4 ETHERNET DRIVER (CXGB4)
2079 M:      Dimitris Michailidis <dm@chelsio.com>
2080 L:      netdev@vger.kernel.org
2081 W:      http://www.chelsio.com
2082 S:      Supported
2083 F:      drivers/net/ethernet/chelsio/cxgb4/
2084
2085 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2086 M:      Steve Wise <swise@chelsio.com>
2087 L:      linux-rdma@vger.kernel.org
2088 W:      http://www.openfabrics.org
2089 S:      Supported
2090 F:      drivers/infiniband/hw/cxgb4/
2091
2092 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2093 M:      Casey Leedom <leedom@chelsio.com>
2094 L:      netdev@vger.kernel.org
2095 W:      http://www.chelsio.com
2096 S:      Supported
2097 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2098
2099 STMMAC ETHERNET DRIVER
2100 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2101 L:      netdev@vger.kernel.org
2102 W:      http://www.stlinux.com
2103 S:      Supported
2104 F:      drivers/net/ethernet/stmicro/stmmac/
2105
2106 CYBERPRO FB DRIVER
2107 M:      Russell King <linux@arm.linux.org.uk>
2108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2109 W:      http://www.arm.linux.org.uk/
2110 S:      Maintained
2111 F:      drivers/video/cyber2000fb.*
2112
2113 CYCLADES 2X SYNC CARD DRIVER
2114 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
2115 W:      http://oops.ghostprotocols.net:81/blog
2116 S:      Maintained
2117 F:      drivers/net/wan/cycx*
2118
2119 CYCLADES ASYNC MUX DRIVER
2120 W:      http://www.cyclades.com/
2121 S:      Orphan
2122 F:      drivers/tty/cyclades.c
2123 F:      include/linux/cyclades.h
2124
2125 CYCLADES PC300 DRIVER
2126 W:      http://www.cyclades.com/
2127 S:      Orphan
2128 F:      drivers/net/wan/pc300*
2129
2130 DAMA SLAVE for AX.25
2131 M:      Joerg Reuter <jreuter@yaina.de>
2132 W:      http://yaina.de/jreuter/
2133 W:      http://www.qsl.net/dl1bke/
2134 L:      linux-hams@vger.kernel.org
2135 S:      Maintained
2136 F:      net/ax25/af_ax25.c
2137 F:      net/ax25/ax25_dev.c
2138 F:      net/ax25/ax25_ds_*
2139 F:      net/ax25/ax25_in.c
2140 F:      net/ax25/ax25_out.c
2141 F:      net/ax25/ax25_timer.c
2142 F:      net/ax25/sysctl_net_ax25.c
2143
2144 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2145 L:      netdev@vger.kernel.org
2146 S:      Orphan
2147 F:      Documentation/networking/dmfe.txt
2148 F:      drivers/net/ethernet/tulip/dmfe.c
2149
2150 DC390/AM53C974 SCSI driver
2151 M:      Kurt Garloff <garloff@suse.de>
2152 W:      http://www.garloff.de/kurt/linux/dc390/
2153 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2154 S:      Maintained
2155 F:      drivers/scsi/tmscsim.*
2156
2157 DC395x SCSI driver
2158 M:      Oliver Neukum <oliver@neukum.name>
2159 M:      Ali Akcaagac <aliakc@web.de>
2160 M:      Jamie Lenehan <lenehan@twibble.org>
2161 W:      http://twibble.org/dist/dc395x/
2162 L:      dc395x@twibble.org
2163 L:      http://lists.twibble.org/mailman/listinfo/dc395x/
2164 S:      Maintained
2165 F:      Documentation/scsi/dc395x.txt
2166 F:      drivers/scsi/dc395x.*
2167
2168 DCCP PROTOCOL
2169 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
2170 L:      dccp@vger.kernel.org
2171 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2172 S:      Maintained
2173 F:      include/linux/dccp.h
2174 F:      include/linux/tfrc.h
2175 F:      net/dccp/
2176
2177 DECnet NETWORK LAYER
2178 W:      http://linux-decnet.sourceforge.net
2179 L:      linux-decnet-user@lists.sourceforge.net
2180 S:      Orphan
2181 F:      Documentation/networking/decnet.txt
2182 F:      net/decnet/
2183
2184 DEFXX FDDI NETWORK DRIVER
2185 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2186 S:      Maintained
2187 F:      drivers/net/fddi/defxx.*
2188
2189 DELL LAPTOP DRIVER
2190 M:      Matthew Garrett <mjg59@srcf.ucam.org>
2191 L:      platform-driver-x86@vger.kernel.org
2192 S:      Maintained
2193 F:      drivers/platform/x86/dell-laptop.c
2194
2195 DELL LAPTOP SMM DRIVER
2196 M:      Massimo Dal Zotto <dz@debian.org>
2197 W:      http://www.debian.org/~dz/i8k/
2198 S:      Maintained
2199 F:      drivers/char/i8k.c
2200 F:      include/linux/i8k.h
2201
2202 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2203 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
2204 S:      Maintained
2205 F:      Documentation/dcdbas.txt
2206 F:      drivers/firmware/dcdbas.*
2207
2208 DELL WMI EXTRAS DRIVER
2209 M:      Matthew Garrett <mjg59@srcf.ucam.org>
2210 S:      Maintained
2211 F:      drivers/platform/x86/dell-wmi.c
2212
2213 DESIGNWARE USB3 DRD IP DRIVER
2214 M:      Felipe Balbi <balbi@ti.com>
2215 L:      linux-usb@vger.kernel.org
2216 L:      linux-omap@vger.kernel.org
2217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2218 S:      Maintained
2219 F:      drivers/usb/dwc3/
2220
2221 DEVICE NUMBER REGISTRY
2222 M:      Torben Mathiasen <device@lanana.org>
2223 W:      http://lanana.org/docs/device-list/index.html
2224 S:      Maintained
2225
2226 DEVICE-MAPPER  (LVM)
2227 P:      Alasdair Kergon
2228 L:      dm-devel@redhat.com
2229 W:      http://sources.redhat.com/dm
2230 Q:      http://patchwork.kernel.org/project/dm-devel/list/
2231 S:      Maintained
2232 F:      Documentation/device-mapper/
2233 F:      drivers/md/dm*
2234 F:      include/linux/device-mapper.h
2235 F:      include/linux/dm-*.h
2236
2237 DIGI INTL. EPCA DRIVER
2238 M:      "Digi International, Inc" <Eng.Linux@digi.com>
2239 L:      Eng.Linux@digi.com
2240 W:      http://www.digi.com
2241 S:      Orphan
2242 F:      Documentation/serial/digiepca.txt
2243 F:      drivers/staging/tty/epca*
2244 F:      drivers/staging/tty/digi*
2245
2246 DIOLAN U2C-12 I2C DRIVER
2247 M:      Guenter Roeck <guenter.roeck@ericsson.com>
2248 L:      linux-i2c@vger.kernel.org
2249 S:      Maintained
2250 F:      drivers/i2c/busses/i2c-diolan-u2c.c
2251
2252 DIRECTORY NOTIFICATION (DNOTIFY)
2253 M:      Eric Paris <eparis@parisplace.org>
2254 S:      Maintained
2255 F:      Documentation/filesystems/dnotify.txt
2256 F:      fs/notify/dnotify/
2257 F:      include/linux/dnotify.h
2258
2259 DISK GEOMETRY AND PARTITION HANDLING
2260 M:      Andries Brouwer <aeb@cwi.nl>
2261 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2262 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2263 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2264 S:      Maintained
2265
2266 DISKQUOTA
2267 M:      Jan Kara <jack@suse.cz>
2268 S:      Maintained
2269 F:      Documentation/filesystems/quota.txt
2270 F:      fs/quota/
2271 F:      include/linux/quota*.h
2272
2273 DISTRIBUTED LOCK MANAGER (DLM)
2274 M:      Christine Caulfield <ccaulfie@redhat.com>
2275 M:      David Teigland <teigland@redhat.com>
2276 L:      cluster-devel@redhat.com
2277 W:      http://sources.redhat.com/cluster/
2278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2279 S:      Supported
2280 F:      fs/dlm/
2281
2282 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2283 M:      Vinod Koul <vinod.koul@intel.com>
2284 M:      Dan Williams <dan.j.williams@intel.com>
2285 S:      Supported
2286 F:      drivers/dma/
2287 F:      include/linux/dma*
2288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2289 T:      git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2290
2291 DME1737 HARDWARE MONITOR DRIVER
2292 M:      Juerg Haefliger <juergh@gmail.com>
2293 L:      lm-sensors@lm-sensors.org
2294 S:      Maintained
2295 F:      Documentation/hwmon/dme1737
2296 F:      drivers/hwmon/dme1737.c
2297
2298 DOCBOOK FOR DOCUMENTATION
2299 M:      Randy Dunlap <rdunlap@xenotime.net>
2300 S:      Maintained
2301 F:      scripts/kernel-doc
2302
2303 DOCKING STATION DRIVER
2304 M:      Shaohua Li <shaohua.li@intel.com>
2305 L:      linux-acpi@vger.kernel.org
2306 S:      Supported
2307 F:      drivers/acpi/dock.c
2308
2309 DOCUMENTATION
2310 M:      Randy Dunlap <rdunlap@xenotime.net>
2311 L:      linux-doc@vger.kernel.org
2312 T:      quilt http://userweb.kernel.org/~rdunlap/kernel-doc-patches/current/
2313 S:      Maintained
2314 F:      Documentation/
2315
2316 DOUBLETALK DRIVER
2317 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
2318 L:      blinux-list@redhat.com
2319 S:      Maintained
2320 F:      drivers/char/dtlk.c
2321 F:      include/linux/dtlk.h
2322
2323 DPT_I2O SCSI RAID DRIVER
2324 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
2325 L:      linux-scsi@vger.kernel.org
2326 W:      http://www.adaptec.com/
2327 S:      Maintained
2328 F:      drivers/scsi/dpt*
2329 F:      drivers/scsi/dpt/
2330
2331 DRBD DRIVER
2332 P:      Philipp Reisner
2333 P:      Lars Ellenberg
2334 M:      drbd-dev@lists.linbit.com
2335 L:      drbd-user@lists.linbit.com
2336 W:      http://www.drbd.org
2337 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
2338 T:      git git://git.drbd.org/drbd-8.3.git
2339 S:      Supported
2340 F:      drivers/block/drbd/
2341 F:      lib/lru_cache.c
2342 F:      Documentation/blockdev/drbd/
2343
2344 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
2345 M:      Greg Kroah-Hartman <gregkh@suse.de>
2346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git
2347 S:      Supported
2348 F:      Documentation/kobject.txt
2349 F:      drivers/base/
2350 F:      fs/sysfs/
2351 F:      fs/debugfs/
2352 F:      include/linux/kobj*
2353 F:      include/linux/debugfs.h
2354 F:      lib/kobj*
2355
2356 DRM DRIVERS
2357 M:      David Airlie <airlied@linux.ie>
2358 L:      dri-devel@lists.freedesktop.org
2359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
2360 S:      Maintained
2361 F:      drivers/gpu/drm/
2362 F:      include/drm/
2363
2364 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2365 M:      Keith Packard <keithp@keithp.com>
2366 L:      intel-gfx@lists.freedesktop.org (subscribers-only)
2367 L:      dri-devel@lists.freedesktop.org
2368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/keithp/linux-2.6.git
2369 S:      Supported
2370 F:      drivers/gpu/drm/i915
2371 F:      include/drm/i915*
2372
2373 DRM DRIVERS FOR EXYNOS
2374 M:      Inki Dae <inki.dae@samsung.com>
2375 L:      dri-devel@lists.freedesktop.org
2376 S:      Supported
2377 F:      drivers/gpu/drm/exynos
2378 F:      include/drm/exynos*
2379
2380 DSCC4 DRIVER
2381 M:      Francois Romieu <romieu@fr.zoreil.com>
2382 L:      netdev@vger.kernel.org
2383 S:      Maintained
2384 F:      drivers/net/wan/dscc4.c
2385
2386 DYNAMIC DEBUG
2387 M:      Jason Baron <jbaron@redhat.com>
2388 S:      Maintained
2389 F:      lib/dynamic_debug.c
2390 F:      include/linux/dynamic_debug.h
2391
2392 DZ DECSTATION DZ11 SERIAL DRIVER
2393 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2394 S:      Maintained
2395 F:      drivers/tty/serial/dz.*
2396
2397 EATA-DMA SCSI DRIVER
2398 M:      Michael Neuffer <mike@i-Connect.Net>
2399 L:      linux-eata@i-connect.net
2400 L:      linux-scsi@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/scsi/eata*
2403
2404 EATA ISA/EISA/PCI SCSI DRIVER
2405 M:      Dario Ballabio <ballabio_dario@emc.com>
2406 L:      linux-scsi@vger.kernel.org
2407 S:      Maintained
2408 F:      drivers/scsi/eata.c
2409
2410 EATA-PIO SCSI DRIVER
2411 M:      Michael Neuffer <mike@i-Connect.Net>
2412 L:      linux-eata@i-connect.net
2413 L:      linux-scsi@vger.kernel.org
2414 S:      Maintained
2415 F:      drivers/scsi/eata_pio.*
2416
2417 EBTABLES
2418 M:      Bart De Schuymer <bart.de.schuymer@pandora.be>
2419 L:      netfilter-devel@vger.kernel.org
2420 W:      http://ebtables.sourceforge.net/
2421 S:      Maintained
2422 F:      include/linux/netfilter_bridge/ebt_*.h
2423 F:      net/bridge/netfilter/ebt*.c
2424
2425 ECRYPT FILE SYSTEM
2426 M:      Tyler Hicks <tyhicks@canonical.com>
2427 M:      Dustin Kirkland <kirkland@canonical.com>
2428 L:      ecryptfs@vger.kernel.org
2429 W:      https://launchpad.net/ecryptfs
2430 S:      Supported
2431 F:      Documentation/filesystems/ecryptfs.txt
2432 F:      fs/ecryptfs/
2433
2434 EDAC-CORE
2435 M:      Doug Thompson <dougthompson@xmission.com>
2436 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2437 W:      bluesmoke.sourceforge.net
2438 S:      Supported
2439 F:      Documentation/edac.txt
2440 F:      drivers/edac/edac_*
2441 F:      include/linux/edac.h
2442
2443 EDAC-AMD64
2444 M:      Doug Thompson <dougthompson@xmission.com>
2445 M:      Borislav Petkov <borislav.petkov@amd.com>
2446 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2447 W:      bluesmoke.sourceforge.net
2448 S:      Supported
2449 F:      drivers/edac/amd64_edac*
2450
2451 EDAC-E752X
2452 M:      Mark Gross <mark.gross@intel.com>
2453 M:      Doug Thompson <dougthompson@xmission.com>
2454 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2455 W:      bluesmoke.sourceforge.net
2456 S:      Maintained
2457 F:      drivers/edac/e752x_edac.c
2458
2459 EDAC-E7XXX
2460 M:      Doug Thompson <dougthompson@xmission.com>
2461 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2462 W:      bluesmoke.sourceforge.net
2463 S:      Maintained
2464 F:      drivers/edac/e7xxx_edac.c
2465
2466 EDAC-I82443BXGX
2467 M:      Tim Small <tim@buttersideup.com>
2468 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2469 W:      bluesmoke.sourceforge.net
2470 S:      Maintained
2471 F:      drivers/edac/i82443bxgx_edac.c
2472
2473 EDAC-I3000
2474 M:      Jason Uhlenkott <juhlenko@akamai.com>
2475 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2476 W:      bluesmoke.sourceforge.net
2477 S:      Maintained
2478 F:      drivers/edac/i3000_edac.c
2479
2480 EDAC-I5000
2481 M:      Doug Thompson <dougthompson@xmission.com>
2482 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2483 W:      bluesmoke.sourceforge.net
2484 S:      Maintained
2485 F:      drivers/edac/i5000_edac.c
2486
2487 EDAC-I5400
2488 M:      Mauro Carvalho Chehab <mchehab@redhat.com>
2489 L:      linux-edac@vger.kernel.org
2490 W:      bluesmoke.sourceforge.net
2491 S:      Maintained
2492 F:      drivers/edac/i5400_edac.c
2493
2494 EDAC-I7300
2495 M:      Mauro Carvalho Chehab <mchehab@redhat.com>
2496 L:      linux-edac@vger.kernel.org
2497 W:      bluesmoke.sourceforge.net
2498 S:      Maintained
2499 F:      drivers/edac/i7300_edac.c
2500
2501 EDAC-I7CORE
2502 M:      Mauro Carvalho Chehab <mchehab@redhat.com>
2503 L:      linux-edac@vger.kernel.org
2504 W:      bluesmoke.sourceforge.net
2505 S:      Maintained
2506 F:      drivers/edac/i7core_edac.c
2507
2508 EDAC-I82975X
2509 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
2510 M:      "Arvind R." <arvino55@gmail.com>
2511 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2512 W:      bluesmoke.sourceforge.net
2513 S:      Maintained
2514 F:      drivers/edac/i82975x_edac.c
2515
2516 EDAC-PASEMI
2517 M:      Egor Martovetsky <egor@pasemi.com>
2518 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2519 W:      bluesmoke.sourceforge.net
2520 S:      Maintained
2521 F:      drivers/edac/pasemi_edac.c
2522
2523 EDAC-R82600
2524 M:      Tim Small <tim@buttersideup.com>
2525 L:      bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2526 W:      bluesmoke.sourceforge.net
2527 S:      Maintained
2528 F:      drivers/edac/r82600_edac.c
2529
2530 EDAC-SBRIDGE
2531 M:      Mauro Carvalho Chehab <mchehab@redhat.com>
2532 L:      linux-edac@vger.kernel.org
2533 W:      bluesmoke.sourceforge.net
2534 S:      Maintained
2535 F:      drivers/edac/sb_edac.c
2536
2537 EDIROL UA-101/UA-1000 DRIVER
2538 M:      Clemens Ladisch <clemens@ladisch.de>
2539 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2540 T:      git git://git.alsa-project.org/alsa-kernel.git
2541 S:      Maintained
2542 F:      sound/usb/misc/ua101.c
2543
2544 EFIFB FRAMEBUFFER DRIVER
2545 L:      linux-fbdev@vger.kernel.org
2546 M:      Peter Jones <pjones@redhat.com>
2547 S:      Maintained
2548 F:      drivers/video/efifb.c
2549
2550 EFS FILESYSTEM
2551 W:      http://aeschi.ch.eu.org/efs/
2552 S:      Orphan
2553 F:      fs/efs/
2554
2555 EHCA (IBM GX bus InfiniBand adapter) DRIVER
2556 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2557 M:      Christoph Raisch <raisch@de.ibm.com>
2558 L:      linux-rdma@vger.kernel.org
2559 S:      Supported
2560 F:      drivers/infiniband/hw/ehca/
2561
2562 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
2563 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
2564 L:      netdev@vger.kernel.org
2565 S:      Maintained
2566 F:      drivers/net/ethernet/ibm/ehea/
2567
2568 EMBEDDED LINUX
2569 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
2570 M:      Matt Mackall <mpm@selenic.com>
2571 M:      David Woodhouse <dwmw2@infradead.org>
2572 L:      linux-embedded@vger.kernel.org
2573 S:      Maintained
2574
2575 EMULEX LPFC FC SCSI DRIVER
2576 M:      James Smart <james.smart@emulex.com>
2577 L:      linux-scsi@vger.kernel.org
2578 W:      http://sourceforge.net/projects/lpfcxxxx
2579 S:      Supported
2580 F:      drivers/scsi/lpfc/
2581
2582 ENE CB710 FLASH CARD READER DRIVER
2583 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
2584 S:      Maintained
2585 F:      drivers/misc/cb710/
2586 F:      drivers/mmc/host/cb710-mmc.*
2587 F:      include/linux/cb710.h
2588
2589 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2590 M:      Maxim Levitsky <maximlevitsky@gmail.com>
2591 S:      Maintained
2592 F:      drivers/media/rc/ene_ir.*
2593
2594 EPSON 1355 FRAMEBUFFER DRIVER
2595 M:      Christopher Hoover <ch@murgatroid.com>
2596 M:      Christopher Hoover <ch@hpl.hp.com>
2597 S:      Maintained
2598 F:      drivers/video/epson1355fb.c
2599
2600 EPSON S1D13XXX FRAMEBUFFER DRIVER
2601 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2602 S:      Maintained
2603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2604 F:      drivers/video/s1d13xxxfb.c
2605 F:      include/video/s1d13xxxfb.h
2606
2607 ETHEREXPRESS-16 NETWORK DRIVER
2608 M:      Philip Blundell <philb@gnu.org>
2609 L:      netdev@vger.kernel.org
2610 S:      Maintained
2611 F:      drivers/net/ethernet/i825xx/eexpress.*
2612
2613 ETHERNET BRIDGE
2614 M:      Stephen Hemminger <shemminger@vyatta.com>
2615 L:      bridge@lists.linux-foundation.org
2616 L:      netdev@vger.kernel.org
2617 W:      http://www.linuxfoundation.org/en/Net:Bridge
2618 S:      Maintained
2619 F:      include/linux/netfilter_bridge/
2620 F:      net/bridge/
2621
2622 ETHERTEAM 16I DRIVER
2623 M:      Mika Kuoppala <miku@iki.fi>
2624 S:      Maintained
2625 F:      drivers/net/ethernet/fujitsu/eth16i.c
2626
2627 EXT2 FILE SYSTEM
2628 M:      Jan Kara <jack@suse.cz>
2629 L:      linux-ext4@vger.kernel.org
2630 S:      Maintained
2631 F:      Documentation/filesystems/ext2.txt
2632 F:      fs/ext2/
2633 F:      include/linux/ext2*
2634
2635 EXT3 FILE SYSTEM
2636 M:      Jan Kara <jack@suse.cz>
2637 M:      Andrew Morton <akpm@linux-foundation.org>
2638 M:      Andreas Dilger <adilger.kernel@dilger.ca>
2639 L:      linux-ext4@vger.kernel.org
2640 S:      Maintained
2641 F:      Documentation/filesystems/ext3.txt
2642 F:      fs/ext3/
2643 F:      include/linux/ext3*
2644
2645 EXT4 FILE SYSTEM
2646 M:      "Theodore Ts'o" <tytso@mit.edu>
2647 M:      Andreas Dilger <adilger.kernel@dilger.ca>
2648 L:      linux-ext4@vger.kernel.org
2649 W:      http://ext4.wiki.kernel.org
2650 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
2651 S:      Maintained
2652 F:      Documentation/filesystems/ext4.txt
2653 F:      fs/ext4/
2654
2655 Extended Verification Module (EVM)
2656 M:      Mimi Zohar <zohar@us.ibm.com>
2657 S:      Supported
2658 F:      security/integrity/evm/
2659
2660 F71805F HARDWARE MONITORING DRIVER
2661 M:      Jean Delvare <khali@linux-fr.org>
2662 L:      lm-sensors@lm-sensors.org
2663 S:      Maintained
2664 F:      Documentation/hwmon/f71805f
2665 F:      drivers/hwmon/f71805f.c
2666
2667 FANOTIFY
2668 M:      Eric Paris <eparis@redhat.com>
2669 S:      Maintained
2670 F:      fs/notify/fanotify/
2671 F:      include/linux/fanotify.h
2672
2673 FARSYNC SYNCHRONOUS DRIVER
2674 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
2675 W:      http://www.farsite.co.uk/
2676 S:      Supported
2677 F:      drivers/net/wan/farsync.*
2678
2679 FAULT INJECTION SUPPORT
2680 M:      Akinobu Mita <akinobu.mita@gmail.com>
2681 S:      Supported
2682 F:      Documentation/fault-injection/
2683 F:      lib/fault-inject.c
2684
2685 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2686 M:      Robert Love <robert.w.love@intel.com>
2687 L:      devel@open-fcoe.org
2688 W:      www.Open-FCoE.org
2689 S:      Supported
2690 F:      drivers/scsi/libfc/
2691 F:      drivers/scsi/fcoe/
2692 F:      include/scsi/fc/
2693 F:      include/scsi/libfc.h
2694 F:      include/scsi/libfcoe.h
2695
2696 FILE LOCKING (flock() and fcntl()/lockf())
2697 M:      Matthew Wilcox <matthew@wil.cx>
2698 L:      linux-fsdevel@vger.kernel.org
2699 S:      Maintained
2700 F:      include/linux/fcntl.h
2701 F:      include/linux/fs.h
2702 F:      fs/fcntl.c
2703 F:      fs/locks.c
2704
2705 FILESYSTEMS (VFS and infrastructure)
2706 M:      Alexander Viro <viro@zeniv.linux.org.uk>
2707 L:      linux-fsdevel@vger.kernel.org
2708 S:      Maintained
2709 F:      fs/*
2710
2711 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2712 M:      Riku Voipio <riku.voipio@iki.fi>
2713 L:      lm-sensors@lm-sensors.org
2714 S:      Maintained
2715 F:      drivers/hwmon/f75375s.c
2716 F:      include/linux/f75375s.h
2717
2718 FIREWIRE AUDIO DRIVERS
2719 M:      Clemens Ladisch <clemens@ladisch.de>
2720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2721 T:      git git://git.alsa-project.org/alsa-kernel.git
2722 S:      Maintained
2723 F:      sound/firewire/
2724
2725 FIREWIRE SUBSYSTEM
2726 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
2727 L:      linux1394-devel@lists.sourceforge.net
2728 W:      http://ieee1394.wiki.kernel.org/
2729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
2730 S:      Maintained
2731 F:      drivers/firewire/
2732 F:      include/linux/firewire*.h
2733 F:      tools/firewire/
2734
2735 FIRMWARE LOADER (request_firmware)
2736 S:      Orphan
2737 F:      Documentation/firmware_class/
2738 F:      drivers/base/firmware*.c
2739 F:      include/linux/firmware.h
2740
2741 FPU EMULATOR
2742 M:      Bill Metzenthen <billm@melbpc.org.au>
2743 W:      http://floatingpoint.sourceforge.net/emulator/index.html
2744 S:      Maintained
2745 F:      arch/x86/math-emu/
2746
2747 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2748 L:      netdev@vger.kernel.org
2749 S:      Orphan
2750 F:      drivers/net/wan/dlci.c
2751 F:      drivers/net/wan/sdla.c
2752
2753 FRAMEBUFFER LAYER
2754 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
2755 L:      linux-fbdev@vger.kernel.org
2756 W:      http://linux-fbdev.sourceforge.net/
2757 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
2758 T:      git git://github.com/schandinat/linux-2.6.git fbdev-next
2759 S:      Maintained
2760 F:      Documentation/fb/
2761 F:      Documentation/devicetree/bindings/fb/
2762 F:      drivers/video/
2763 F:      include/video/
2764 F:      include/linux/fb.h
2765
2766 FREESCALE DMA DRIVER
2767 M:      Li Yang <leoli@freescale.com>
2768 M:      Zhang Wei <zw@zh-kernel.org>
2769 L:      linuxppc-dev@lists.ozlabs.org
2770 S:      Maintained
2771 F:      drivers/dma/fsldma.*
2772
2773 FREESCALE I2C CPM DRIVER
2774 M:      Jochen Friedrich <jochen@scram.de>
2775 L:      linuxppc-dev@lists.ozlabs.org
2776 L:      linux-i2c@vger.kernel.org
2777 S:      Maintained
2778 F:      drivers/i2c/busses/i2c-cpm.c
2779
2780 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2781 M:      Sascha Hauer <kernel@pengutronix.de>
2782 L:      linux-fbdev@vger.kernel.org
2783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2784 S:      Maintained
2785 F:      arch/arm/plat-mxc/include/mach/imxfb.h
2786 F:      drivers/video/imxfb.c
2787
2788 FREESCALE SOC FS_ENET DRIVER
2789 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
2790 M:      Vitaly Bordug <vbordug@ru.mvista.com>
2791 L:      linuxppc-dev@lists.ozlabs.org
2792 L:      netdev@vger.kernel.org
2793 S:      Maintained
2794 F:      drivers/net/ethernet/freescale/fs_enet/
2795 F:      include/linux/fs_enet_pd.h
2796
2797 FREESCALE QUICC ENGINE LIBRARY
2798 M:      Timur Tabi <timur@freescale.com>
2799 L:      linuxppc-dev@lists.ozlabs.org
2800 S:      Supported
2801 F:      arch/powerpc/sysdev/qe_lib/
2802 F:      arch/powerpc/include/asm/*qe.h
2803
2804 FREESCALE USB PERIPHERAL DRIVERS
2805 M:      Li Yang <leoli@freescale.com>
2806 L:      linux-usb@vger.kernel.org
2807 L:      linuxppc-dev@lists.ozlabs.org
2808 S:      Maintained
2809 F:      drivers/usb/gadget/fsl*
2810
2811 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2812 M:      Li Yang <leoli@freescale.com>
2813 L:      netdev@vger.kernel.org
2814 L:      linuxppc-dev@lists.ozlabs.org
2815 S:      Maintained
2816 F:      drivers/net/ethernet/freescale/ucc_geth*
2817
2818 FREESCALE QUICC ENGINE UCC UART DRIVER
2819 M:      Timur Tabi <timur@freescale.com>
2820 L:      linuxppc-dev@lists.ozlabs.org
2821 S:      Supported
2822 F:      drivers/tty/serial/ucc_uart.c
2823
2824 FREESCALE SOC SOUND DRIVERS
2825 M:      Timur Tabi <timur@freescale.com>
2826 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2827 L:      linuxppc-dev@lists.ozlabs.org
2828 S:      Supported
2829 F:      sound/soc/fsl/fsl*
2830 F:      sound/soc/fsl/mpc8610_hpcd.c
2831
2832 FREEVXFS FILESYSTEM
2833 M:      Christoph Hellwig <hch@infradead.org>
2834 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
2835 S:      Maintained
2836 F:      fs/freevxfs/
2837
2838 FREEZER
2839 M:      Pavel Machek <pavel@ucw.cz>
2840 M:      "Rafael J. Wysocki" <rjw@sisk.pl>
2841 L:      linux-pm@vger.kernel.org
2842 S:      Supported
2843 F:      Documentation/power/freezing-of-tasks.txt
2844 F:      include/linux/freezer.h
2845 F:      kernel/freezer.c
2846
2847 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2848 M:      David Howells <dhowells@redhat.com>
2849 L:      linux-cachefs@redhat.com
2850 S:      Supported
2851 F:      Documentation/filesystems/caching/
2852 F:      fs/fscache/
2853 F:      include/linux/fscache*.h
2854
2855 FUJITSU FR-V (FRV) PORT
2856 M:      David Howells <dhowells@redhat.com>
2857 S:      Maintained
2858 F:      arch/frv/
2859
2860 FUJITSU LAPTOP EXTRAS
2861 M:      Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
2862 L:      platform-driver-x86@vger.kernel.org
2863 S:      Maintained
2864 F:      drivers/platform/x86/fujitsu-laptop.c
2865
2866 FUJITSU M-5MO LS CAMERA ISP DRIVER
2867 M:      Kyungmin Park <kyungmin.park@samsung.com>
2868 M:      Heungjun Kim <riverful.kim@samsung.com>
2869 L:      linux-media@vger.kernel.org
2870 S:      Maintained
2871 F:      drivers/media/video/m5mols/
2872 F:      include/media/m5mols.h
2873
2874 FUSE: FILESYSTEM IN USERSPACE
2875 M:      Miklos Szeredi <miklos@szeredi.hu>
2876 L:      fuse-devel@lists.sourceforge.net
2877 W:      http://fuse.sourceforge.net/
2878 S:      Maintained
2879 F:      fs/fuse/
2880 F:      include/linux/fuse.h
2881
2882 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2883 M:      Rik Faith <faith@cs.unc.edu>
2884 L:      linux-scsi@vger.kernel.org
2885 S:      Odd Fixes (e.g., new signatures)
2886 F:      drivers/scsi/fdomain.*
2887
2888 GDT SCSI DISK ARRAY CONTROLLER DRIVER
2889 M:      Achim Leubner <achim_leubner@adaptec.com>
2890 L:      linux-scsi@vger.kernel.org
2891 W:      http://www.icp-vortex.com/
2892 S:      Supported
2893 F:      drivers/scsi/gdt*
2894
2895 GENERIC GPIO I2C DRIVER
2896 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2897 S:      Supported
2898 F:      drivers/i2c/busses/i2c-gpio.c
2899 F:      include/linux/i2c-gpio.h
2900
2901 GENERIC GPIO I2C MULTIPLEXER DRIVER
2902 M:      Peter Korsgaard <peter.korsgaard@barco.com>
2903 L:      linux-i2c@vger.kernel.org
2904 S:      Supported
2905 F:      drivers/i2c/muxes/gpio-i2cmux.c
2906 F:      include/linux/gpio-i2cmux.h
2907 F:      Documentation/i2c/muxes/gpio-i2cmux
2908
2909 GENERIC HDLC (WAN) DRIVERS
2910 M:      Krzysztof Halasa <khc@pm.waw.pl>
2911 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
2912 S:      Maintained
2913 F:      drivers/net/wan/c101.c
2914 F:      drivers/net/wan/hd6457*
2915 F:      drivers/net/wan/hdlc*
2916 F:      drivers/net/wan/n2.c
2917 F:      drivers/net/wan/pc300too.c
2918 F:      drivers/net/wan/pci200syn.c
2919 F:      drivers/net/wan/wanxl*
2920
2921 GENERIC INCLUDE/ASM HEADER FILES
2922 M:      Arnd Bergmann <arnd@arndb.de>
2923 L:      linux-arch@vger.kernel.org
2924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2925 S:      Maintained
2926 F:      include/asm-generic
2927
2928 GENERIC UIO DRIVER FOR PCI DEVICES
2929 M:      "Michael S. Tsirkin" <mst@redhat.com>
2930 L:      kvm@vger.kernel.org
2931 S:      Supported
2932 F:      drivers/uio/uio_pci_generic.c
2933
2934 GFS2 FILE SYSTEM
2935 M:      Steven Whitehouse <swhiteho@redhat.com>
2936 L:      cluster-devel@redhat.com
2937 W:      http://sources.redhat.com/cluster/
2938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
2940 S:      Supported
2941 F:      Documentation/filesystems/gfs2*.txt
2942 F:      fs/gfs2/
2943 F:      include/linux/gfs2_ondisk.h
2944
2945 GIGASET ISDN DRIVERS
2946 M:      Hansjoerg Lipp <hjlipp@web.de>
2947 M:      Tilman Schmidt <tilman@imap.cc>
2948 L:      gigaset307x-common@lists.sourceforge.net
2949 W:      http://gigaset307x.sourceforge.net/
2950 S:      Maintained
2951 F:      Documentation/isdn/README.gigaset
2952 F:      drivers/isdn/gigaset/
2953 F:      include/linux/gigaset_dev.h
2954
2955 GPIO SUBSYSTEM
2956 M:      Grant Likely <grant.likely@secretlab.ca>
2957 S:      Maintained
2958 T:      git git://git.secretlab.ca/git/linux-2.6.git
2959 F:      Documentation/gpio.txt
2960 F:      drivers/gpio/
2961 F:      include/linux/gpio*
2962
2963 GRE DEMULTIPLEXER DRIVER
2964 M:      Dmitry Kozlov <xeb@mail.ru>
2965 L:      netdev@vger.kernel.org
2966 S:      Maintained
2967 F:      net/ipv4/gre.c
2968 F:      include/net/gre.h
2969
2970 GRETH 10/100/1G Ethernet MAC device driver
2971 M:      Kristoffer Glembo <kristoffer@gaisler.com>
2972 L:      netdev@vger.kernel.org
2973 S:      Maintained
2974 F:      drivers/net/greth*
2975
2976 GSPCA FINEPIX SUBDRIVER
2977 M:      Frank Zago <frank@zago.net>
2978 L:      linux-media@vger.kernel.org
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2980 S:      Maintained
2981 F:      drivers/media/video/gspca/finepix.c
2982
2983 GSPCA GL860 SUBDRIVER
2984 M:      Olivier Lorin <o.lorin@laposte.net>
2985 L:      linux-media@vger.kernel.org
2986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2987 S:      Maintained
2988 F:      drivers/media/video/gspca/gl860/
2989
2990 GSPCA M5602 SUBDRIVER
2991 M:      Erik Andren <erik.andren@gmail.com>
2992 L:      linux-media@vger.kernel.org
2993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2994 S:      Maintained
2995 F:      drivers/media/video/gspca/m5602/
2996
2997 GSPCA PAC207 SONIXB SUBDRIVER
2998 M:      Hans de Goede <hdegoede@redhat.com>
2999 L:      linux-media@vger.kernel.org
3000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3001 S:      Maintained
3002 F:      drivers/media/video/gspca/pac207.c
3003
3004 GSPCA SN9C20X SUBDRIVER
3005 M:      Brian Johnson <brijohn@gmail.com>
3006 L:      linux-media@vger.kernel.org
3007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3008 S:      Maintained
3009 F:      drivers/media/video/gspca/sn9c20x.c
3010
3011 GSPCA T613 SUBDRIVER
3012 M:      Leandro Costantino <lcostantino@gmail.com>
3013 L:      linux-media@vger.kernel.org
3014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3015 S:      Maintained
3016 F:      drivers/media/video/gspca/t613.c
3017
3018 GSPCA USB WEBCAM DRIVER
3019 M:      Jean-Francois Moine <moinejf@free.fr>
3020 W:      http://moinejf.free.fr
3021 L:      linux-media@vger.kernel.org
3022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3023 S:      Maintained
3024 F:      drivers/media/video/gspca/
3025
3026 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3027 M:      Frank Seidel <frank@f-seidel.de>
3028 L:      platform-driver-x86@vger.kernel.org
3029 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3030 S:      Maintained
3031 F:      drivers/platform/x86/hdaps.c
3032
3033 HWPOISON MEMORY FAILURE HANDLING
3034 M:      Andi Kleen <andi@firstfloor.org>
3035 L:      linux-mm@kvack.org
3036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3037 S:      Maintained
3038 F:      mm/memory-failure.c
3039 F:      mm/hwpoison-inject.c
3040
3041 HYPERVISOR VIRTUAL CONSOLE DRIVER
3042 L:      linuxppc-dev@lists.ozlabs.org
3043 S:      Odd Fixes
3044 F:      drivers/tty/hvc/
3045
3046 HARDWARE MONITORING
3047 M:      Jean Delvare <khali@linux-fr.org>
3048 M:      Guenter Roeck <guenter.roeck@ericsson.com>
3049 L:      lm-sensors@lm-sensors.org
3050 W:      http://www.lm-sensors.org/
3051 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
3052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
3053 S:      Maintained
3054 F:      Documentation/hwmon/
3055 F:      drivers/hwmon/
3056 F:      include/linux/hwmon*.h
3057
3058 HARDWARE RANDOM NUMBER GENERATOR CORE
3059 M:      Matt Mackall <mpm@selenic.com>
3060 M:      Herbert Xu <herbert@gondor.apana.org.au>
3061 S:      Odd fixes
3062 F:      Documentation/hw_random.txt
3063 F:      drivers/char/hw_random/
3064 F:      include/linux/hw_random.h
3065
3066 HARDWARE SPINLOCK CORE
3067 M:      Ohad Ben-Cohen <ohad@wizery.com>
3068 S:      Maintained
3069 F:      Documentation/hwspinlock.txt
3070 F:      drivers/hwspinlock/hwspinlock_*
3071 F:      include/linux/hwspinlock.h
3072
3073 HARMONY SOUND DRIVER
3074 M:      Kyle McMartin <kyle@mcmartin.ca>
3075 L:      linux-parisc@vger.kernel.org
3076 S:      Maintained
3077 F:      sound/parisc/harmony.*
3078
3079 HEWLETT-PACKARD SMART2 RAID DRIVER
3080 M:      Chirag Kantharia <chirag.kantharia@hp.com>
3081 L:      iss_storagedev@hp.com
3082 S:      Maintained
3083 F:      Documentation/blockdev/cpqarray.txt
3084 F:      drivers/block/cpqarray.*
3085
3086 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
3087 M:      "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
3088 L:      iss_storagedev@hp.com
3089 S:      Supported
3090 F:      Documentation/scsi/hpsa.txt
3091 F:      drivers/scsi/hpsa*.[ch]
3092 F:      include/linux/cciss*.h
3093
3094 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
3095 M:      Mike Miller <mike.miller@hp.com>
3096 L:      iss_storagedev@hp.com
3097 S:      Supported
3098 F:      Documentation/blockdev/cciss.txt
3099 F:      drivers/block/cciss*
3100 F:      include/linux/cciss_ioctl.h
3101
3102 HFS FILESYSTEM
3103 L:      linux-fsdevel@vger.kernel.org
3104 S:      Orphan
3105 F:      Documentation/filesystems/hfs.txt
3106 F:      fs/hfs/
3107
3108 HGA FRAMEBUFFER DRIVER
3109 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
3110 L:      linux-nvidia@lists.surfsouth.com
3111 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3112 S:      Maintained
3113 F:      drivers/video/hgafb.c
3114
3115 HIBERNATION (aka Software Suspend, aka swsusp)
3116 M:      Pavel Machek <pavel@ucw.cz>
3117 M:      "Rafael J. Wysocki" <rjw@sisk.pl>
3118 L:      linux-pm@vger.kernel.org
3119 S:      Supported
3120 F:      arch/x86/power/
3121 F:      drivers/base/power/
3122 F:      kernel/power/
3123 F:      include/linux/suspend.h
3124 F:      include/linux/freezer.h
3125 F:      include/linux/pm.h
3126 F:      arch/*/include/asm/suspend*.h
3127
3128 HID CORE LAYER
3129 M:      Jiri Kosina <jkosina@suse.cz>
3130 L:      linux-input@vger.kernel.org
3131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
3132 S:      Maintained
3133 F:      drivers/hid/
3134 F:      include/linux/hid*
3135
3136 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
3137 M:      Thomas Gleixner <tglx@linutronix.de>
3138 S:      Maintained
3139 F:      Documentation/timers/
3140 F:      kernel/hrtimer.c
3141 F:      kernel/time/clockevents.c
3142 F:      kernel/time/tick*.*
3143 F:      kernel/time/timer_*.c
3144 F:      include/linux/clockchips.h
3145 F:      include/linux/hrtimer.h
3146
3147 HIGH-SPEED SCC DRIVER FOR AX.25
3148 M:      Klaus Kudielka <klaus.kudielka@ieee.org>
3149 L:      linux-hams@vger.kernel.org
3150 W:      http://www.nt.tuwien.ac.at/~kkudielk/Linux/
3151 S:      Maintained
3152 F:      drivers/net/hamradio/dmascc.c
3153 F:      drivers/net/hamradio/scc.c
3154
3155 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
3156 M:      HighPoint Linux Team <linux@highpoint-tech.com>
3157 W:      http://www.highpoint-tech.com
3158 S:      Supported
3159 F:      Documentation/scsi/hptiop.txt
3160 F:      drivers/scsi/hptiop.c
3161
3162 HIPPI
3163 M:      Jes Sorensen <jes@trained-monkey.org>
3164 L:      linux-hippi@sunsite.dk
3165 S:      Maintained
3166 F:      include/linux/hippidevice.h
3167 F:      include/linux/if_hippi.h
3168 F:      net/802/hippi.c
3169 F:      drivers/net/hippi/
3170
3171 HOST AP DRIVER
3172 M:      Jouni Malinen <j@w1.fi>
3173 L:      hostap@shmoo.com (subscribers-only)
3174 L:      linux-wireless@vger.kernel.org
3175 W:      http://hostap.epitest.fi/
3176 S:      Maintained
3177 F:      drivers/net/wireless/hostap/
3178
3179 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
3180 L:      platform-driver-x86@vger.kernel.org
3181 S:      Orphan
3182 F:      drivers/platform/x86/tc1100-wmi.c
3183
3184 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
3185 M:      Jaroslav Kysela <perex@perex.cz>
3186 S:      Maintained
3187 F:      drivers/net/ethernet/hp/hp100.*
3188
3189 HPET:   High Precision Event Timers driver
3190 M:      Clemens Ladisch <clemens@ladisch.de>
3191 S:      Maintained
3192 F:      Documentation/timers/hpet.txt
3193 F:      drivers/char/hpet.c
3194 F:      include/linux/hpet.h
3195
3196 HPET:   x86
3197 M:      "Venkatesh Pallipadi (Venki)" <venki@google.com>
3198 S:      Maintained
3199 F:      arch/x86/kernel/hpet.c
3200 F:      arch/x86/include/asm/hpet.h
3201
3202 HPFS FILESYSTEM
3203 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
3204 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3205 S:      Maintained
3206 F:      fs/hpfs/
3207
3208 HSO 3G MODEM DRIVER
3209 M:      Jan Dumon <j.dumon@option.com>
3210 W:      http://www.pharscape.org
3211 S:      Maintained
3212 F:      drivers/net/usb/hso.c
3213
3214 HTCPEN TOUCHSCREEN DRIVER
3215 M:      Pau Oliva Fora <pof@eslack.org>
3216 L:      linux-input@vger.kernel.org
3217 S:      Maintained
3218 F:      drivers/input/touchscreen/htcpen.c
3219
3220 HUGETLB FILESYSTEM
3221 M:      William Irwin <wli@holomorphy.com>
3222 S:      Maintained
3223 F:      fs/hugetlbfs/
3224
3225 I2C/SMBUS STUB DRIVER
3226 M:      "Mark M. Hoffman" <mhoffman@lightlink.com>
3227 L:      linux-i2c@vger.kernel.org
3228 S:      Maintained
3229 F:      drivers/i2c/busses/i2c-stub.c
3230
3231 I2C SUBSYSTEM
3232 M:      "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3233 M:      "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
3234 L:      linux-i2c@vger.kernel.org
3235 W:      http://i2c.wiki.kernel.org/
3236 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
3237 T:      git git://git.fluff.org/bjdooks/linux.git
3238 S:      Maintained
3239 F:      Documentation/i2c/
3240 F:      drivers/i2c/
3241 F:      include/linux/i2c.h
3242 F:      include/linux/i2c-*.h
3243
3244 I2C-TINY-USB DRIVER
3245 M:      Till Harbaum <till@harbaum.org>
3246 L:      linux-i2c@vger.kernel.org
3247 W:      http://www.harbaum.org/till/i2c_tiny_usb
3248 S:      Maintained
3249 F:      drivers/i2c/busses/i2c-tiny-usb.c
3250
3251 i386 BOOT CODE
3252 M:      "H. Peter Anvin" <hpa@zytor.com>
3253 S:      Maintained
3254 F:      arch/x86/boot/
3255
3256 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
3257 M:      "H. Peter Anvin" <hpa@zytor.com>
3258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
3259 S:      Maintained
3260
3261 IA64 (Itanium) PLATFORM
3262 M:      Tony Luck <tony.luck@intel.com>
3263 M:      Fenghua Yu <fenghua.yu@intel.com>
3264 L:      linux-ia64@vger.kernel.org
3265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
3266 S:      Maintained
3267 F:      arch/ia64/
3268
3269 IBM MCA SCSI SUBSYSTEM DRIVER
3270 M:      Michael Lang <langa2@kph.uni-mainz.de>
3271 W:      http://www.uni-mainz.de/~langm000/linux.html
3272 S:      Maintained
3273 F:      drivers/scsi/ibmmca.c
3274
3275 IBM Power Linux RAID adapter
3276 M:      Brian King <brking@us.ibm.com>
3277 S:      Supported
3278 F:      drivers/scsi/ipr.*
3279
3280 IBM Power Virtual Ethernet Device Driver
3281 M:      Santiago Leon <santil@linux.vnet.ibm.com>
3282 L:      netdev@vger.kernel.org
3283 S:      Supported
3284 F:      drivers/net/ethernet/ibm/ibmveth.*
3285
3286 IBM ServeRAID RAID DRIVER
3287 P:      Jack Hammer
3288 M:      Dave Jeffery <ipslinux@adaptec.com>
3289 W:      http://www.developer.ibm.com/welcome/netfinity/serveraid.html
3290 S:      Supported
3291 F:      drivers/scsi/ips.*
3292
3293 IDE SUBSYSTEM
3294 M:      "David S. Miller" <davem@davemloft.net>
3295 L:      linux-ide@vger.kernel.org
3296 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
3297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
3298 S:      Maintained
3299 F:      Documentation/ide/
3300 F:      drivers/ide/
3301 F:      include/linux/ide.h
3302
3303 IDEAPAD LAPTOP EXTRAS DRIVER
3304 M:      Ike Panhc <ike.pan@canonical.com>
3305 L:      platform-driver-x86@vger.kernel.org
3306 W:      http://launchpad.net/ideapad-laptop
3307 S:      Maintained
3308 F:      drivers/platform/x86/ideapad-laptop.c
3309
3310 IDE/ATAPI DRIVERS
3311 M:      Borislav Petkov <petkovbb@gmail.com>
3312 L:      linux-ide@vger.kernel.org
3313 S:      Maintained
3314 F:      Documentation/cdrom/ide-cd
3315 F:      drivers/ide/ide-cd*
3316
3317 IDLE-I7300
3318 M:      Andy Henroid <andrew.d.henroid@intel.com>
3319 L:      linux-pm@vger.kernel.org
3320 S:      Supported
3321 F:      drivers/idle/i7300_idle.c
3322
3323 IEEE 802.15.4 SUBSYSTEM
3324 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3325 M:      Sergey Lapin <slapin@ossfans.org>
3326 L:      linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
3327 W:      http://apps.sourceforge.net/trac/linux-zigbee
3328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
3329 S:      Maintained
3330 F:      net/ieee802154/
3331 F:      drivers/ieee802154/
3332
3333 IKANOS/ADI EAGLE ADSL USB DRIVER
3334 M:      Matthieu Castet <castet.matthieu@free.fr>
3335 M:      Stanislaw Gruszka <stf_xl@wp.pl>
3336 S:      Maintained
3337 F:      drivers/usb/atm/ueagle-atm.c
3338
3339 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
3340 M:      Mimi Zohar <zohar@us.ibm.com>
3341 S:      Supported
3342 F:      security/integrity/ima/
3343
3344 IMS TWINTURBO FRAMEBUFFER DRIVER
3345 L:      linux-fbdev@vger.kernel.org
3346 S:      Orphan
3347 F:      drivers/video/imsttfb.c
3348
3349 INFINIBAND SUBSYSTEM
3350 M:      Roland Dreier <roland@kernel.org>
3351 M:      Sean Hefty <sean.hefty@intel.com>
3352 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
3353 L:      linux-rdma@vger.kernel.org
3354 W:      http://www.openfabrics.org/
3355 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
3357 S:      Supported
3358 F:      Documentation/infiniband/
3359 F:      drivers/infiniband/
3360 F:      include/linux/if_infiniband.h
3361
3362 INOTIFY
3363 M:      John McCutchan <john@johnmccutchan.com>
3364 M:      Robert Love <rlove@rlove.org>
3365 M:      Eric Paris <eparis@parisplace.org>
3366 S:      Maintained
3367 F:      Documentation/filesystems/inotify.txt
3368 F:      fs/notify/inotify/
3369 F:      include/linux/inotify.h
3370
3371 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
3372 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
3373 M:      Dmitry Torokhov <dtor@mail.ru>
3374 L:      linux-input@vger.kernel.org
3375 Q:      http://patchwork.kernel.org/project/linux-input/list/
3376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
3377 S:      Maintained
3378 F:      drivers/input/
3379
3380 INPUT MULTITOUCH (MT) PROTOCOL
3381 M:      Henrik Rydberg <rydberg@euromail.se>
3382 L:      linux-input@vger.kernel.org
3383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
3384 S:      Maintained
3385 F:      Documentation/input/multi-touch-protocol.txt
3386 F:      drivers/input/input-mt.c
3387 K:      \b(ABS|SYN)_MT_
3388
3389 INTEL C600 SERIES SAS CONTROLLER DRIVER
3390 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
3391 M:      Dan Williams <dan.j.williams@intel.com>
3392 M:      Dave Jiang <dave.jiang@intel.com>
3393 M:      Ed Nadolski <edmund.nadolski@intel.com>
3394 L:      linux-scsi@vger.kernel.org
3395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/isci.git
3396 S:      Maintained
3397 F:      drivers/scsi/isci/
3398 F:      firmware/isci/
3399
3400 INTEL IDLE DRIVER
3401 M:      Len Brown <lenb@kernel.org>
3402 L:      linux-pm@vger.kernel.org
3403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3404 S:      Supported
3405 F:      drivers/idle/intel_idle.c
3406
3407 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
3408 M:      Maik Broemme <mbroemme@plusserver.de>
3409 L:      linux-fbdev@vger.kernel.org
3410 S:      Maintained
3411 F:      Documentation/fb/intelfb.txt
3412 F:      drivers/video/intelfb/
3413
3414 INTEL 810/815 FRAMEBUFFER DRIVER
3415 M:      Antonino Daplas <adaplas@gmail.com>
3416 L:      linux-fbdev@vger.kernel.org
3417 S:      Maintained
3418 F:      drivers/video/i810/
3419
3420 INTEL MENLOW THERMAL DRIVER
3421 M:      Sujith Thomas <sujith.thomas@intel.com>
3422 L:      platform-driver-x86@vger.kernel.org
3423 W:      http://www.lesswatts.org/projects/acpi/
3424 S:      Supported
3425 F:      drivers/platform/x86/intel_menlow.c
3426
3427 INTEL IA32 MICROCODE UPDATE SUPPORT
3428 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
3429 S:      Maintained
3430 F:      arch/x86/kernel/microcode_core.c
3431 F:      arch/x86/kernel/microcode_intel.c
3432
3433 INTEL I/OAT DMA DRIVER
3434 M:      Dan Williams <dan.j.williams@intel.com>
3435 S:      Supported
3436 F:      drivers/dma/ioat*
3437
3438 INTEL IOMMU (VT-d)
3439 M:      David Woodhouse <dwmw2@infradead.org>
3440 L:      iommu@lists.linux-foundation.org
3441 T:      git git://git.infradead.org/iommu-2.6.git
3442 S:      Supported
3443 F:      drivers/iommu/intel-iommu.c
3444 F:      include/linux/intel-iommu.h
3445
3446 INTEL IOP-ADMA DMA DRIVER
3447 M:      Dan Williams <dan.j.williams@intel.com>
3448 S:      Maintained
3449 F:      drivers/dma/iop-adma.c
3450
3451 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
3452 M:      Krzysztof Halasa <khc@pm.waw.pl>
3453 S:      Maintained
3454 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
3455 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
3456 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3457 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
3458 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
3459 F:      drivers/net/wan/ixp4xx_hss.c
3460
3461 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3462 M:      Deepak Saxena <dsaxena@plexity.net>
3463 S:      Maintained
3464 F:      drivers/char/hw_random/ixp4xx-rng.c
3465
3466 INTEL IXP2000 ETHERNET DRIVER
3467 M:      Lennert Buytenhek <kernel@wantstofly.org>
3468 L:      netdev@vger.kernel.org
3469 S:      Maintained
3470 F:      drivers/net/ethernet/xscale/ixp2000/
3471
3472 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
3473 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3474 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
3475 M:      Bruce Allan <bruce.w.allan@intel.com>
3476 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
3477 M:      Don Skidmore <donald.c.skidmore@intel.com>
3478 M:      Greg Rose <gregory.v.rose@intel.com>
3479 M:      Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
3480 M:      Alex Duyck <alexander.h.duyck@intel.com>
3481 M:      John Ronciak <john.ronciak@intel.com>
3482 L:      e1000-devel@lists.sourceforge.net
3483 W:      http://e1000.sourceforge.net/
3484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
3486 S:      Supported
3487 F:      Documentation/networking/e100.txt
3488 F:      Documentation/networking/e1000.txt
3489 F:      Documentation/networking/e1000e.txt
3490 F:      Documentation/networking/igb.txt
3491 F:      Documentation/networking/igbvf.txt
3492 F:      Documentation/networking/ixgb.txt
3493 F:      Documentation/networking/ixgbe.txt
3494 F:      Documentation/networking/ixgbevf.txt
3495 F:      drivers/net/ethernet/intel/
3496
3497 INTEL MRST PMU DRIVER
3498 M:      Len Brown <len.brown@intel.com>
3499 L:      linux-pm@vger.kernel.org
3500 S:      Supported
3501 F:      arch/x86/platform/mrst/pmu.*
3502
3503 INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
3504 L:      linux-wireless@vger.kernel.org
3505 S:      Orphan
3506 F:      Documentation/networking/README.ipw2100
3507 F:      drivers/net/wireless/ipw2x00/ipw2100.*
3508
3509 INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
3510 L:      linux-wireless@vger.kernel.org
3511 S:      Orphan
3512 F:      Documentation/networking/README.ipw2200
3513 F:      drivers/net/wireless/ipw2x00/ipw2200.*
3514
3515 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3516 M:      Joseph Cihula <joseph.cihula@intel.com>
3517 M:      Shane Wang <shane.wang@intel.com>
3518 L:      tboot-devel@lists.sourceforge.net
3519 W:      http://tboot.sourceforge.net
3520 T:      Mercurial http://www.bughost.org/repos.hg/tboot.hg
3521 S:      Supported
3522 F:      Documentation/intel_txt.txt
3523 F:      include/linux/tboot.h
3524 F:      arch/x86/kernel/tboot.c
3525
3526 INTEL WIRELESS WIMAX CONNECTION 2400
3527 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
3528 M:      linux-wimax@intel.com
3529 L:      wimax@linuxwimax.org
3530 S:      Supported
3531 W:      http://linuxwimax.org
3532 F:      Documentation/wimax/README.i2400m
3533 F:      drivers/net/wimax/i2400m/
3534 F:      include/linux/wimax/i2400m.h
3535
3536 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3537 M:      Stanislaw Gruszka <sgruszka@redhat.com>
3538 L:      linux-wireless@vger.kernel.org
3539 S:      Supported
3540 F:      drivers/net/wireless/iwlegacy/
3541
3542 INTEL WIRELESS WIFI LINK (iwlwifi)
3543 M:      Wey-Yi Guy <wey-yi.w.guy@intel.com>
3544 M:      Intel Linux Wireless <ilw@linux.intel.com>
3545 L:      linux-wireless@vger.kernel.org
3546 W:      http://intellinuxwireless.org
3547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
3548 S:      Supported
3549 F:      drivers/net/wireless/iwlwifi/
3550
3551 INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3552 M:      Samuel Ortiz <samuel.ortiz@intel.com>
3553 M:      Intel Linux Wireless <ilw@linux.intel.com>
3554 L:      linux-wireless@vger.kernel.org
3555 S:      Supported
3556 W:      http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3557 F:      drivers/net/wireless/iwmc3200wifi/
3558
3559 IOC3 ETHERNET DRIVER
3560 M:      Ralf Baechle <ralf@linux-mips.org>
3561 L:      linux-mips@linux-mips.org
3562 S:      Maintained
3563 F:      drivers/net/ethernet/sgi/ioc3-eth.c
3564
3565 IOC3 SERIAL DRIVER
3566 M:      Pat Gefre <pfg@sgi.com>
3567 L:      linux-serial@vger.kernel.org
3568 S:      Maintained
3569 F:      drivers/tty/serial/ioc3_serial.c
3570
3571 IP MASQUERADING
3572 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
3573 S:      Maintained
3574 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
3575
3576 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3577 M:      Francois Romieu <romieu@fr.zoreil.com>
3578 M:      Sorbica Shieh <sorbica@icplus.com.tw>
3579 L:      netdev@vger.kernel.org
3580 S:      Maintained
3581 F:      drivers/net/ethernet/icplus/ipg.*
3582
3583 IPATH DRIVER
3584 M:      Mike Marciniszyn <infinipath@qlogic.com>
3585 L:      linux-rdma@vger.kernel.org
3586 S:      Maintained
3587 F:      drivers/infiniband/hw/ipath/
3588
3589 IPMI SUBSYSTEM
3590 M:      Corey Minyard <minyard@acm.org>
3591 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
3592 W:      http://openipmi.sourceforge.net/
3593 S:      Supported
3594 F:      Documentation/IPMI.txt
3595 F:      drivers/char/ipmi/
3596 F:      include/linux/ipmi*
3597
3598 IPS SCSI RAID DRIVER
3599 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3600 L:      linux-scsi@vger.kernel.org
3601 W:      http://www.adaptec.com/
3602 S:      Maintained
3603 F:      drivers/scsi/ips*
3604
3605 IPVS
3606 M:      Wensong Zhang <wensong@linux-vs.org>
3607 M:      Simon Horman <horms@verge.net.au>
3608 M:      Julian Anastasov <ja@ssi.bg>
3609 L:      netdev@vger.kernel.org
3610 L:      lvs-devel@vger.kernel.org
3611 S:      Maintained
3612 F:      Documentation/networking/ipvs-sysctl.txt
3613 F:      include/net/ip_vs.h
3614 F:      include/linux/ip_vs.h
3615 F:      net/netfilter/ipvs/
3616
3617 IPWIRELESS DRIVER
3618 M:      Jiri Kosina <jkosina@suse.cz>
3619 M:      David Sterba <dsterba@suse.cz>
3620 S:      Odd Fixes
3621 F:      drivers/tty/ipwireless/
3622
3623 IPX NETWORK LAYER
3624 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
3625 L:      netdev@vger.kernel.org
3626 S:      Maintained
3627 F:      include/linux/ipx.h
3628 F:      include/net/ipx.h
3629 F:      net/ipx/
3630
3631 IRDA SUBSYSTEM
3632 M:      Samuel Ortiz <samuel@sortiz.org>
3633 L:      irda-users@lists.sourceforge.net (subscribers-only)
3634 L:      netdev@vger.kernel.org
3635 W:      http://irda.sourceforge.net/
3636 S:      Maintained
3637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
3638 F:      Documentation/networking/irda.txt
3639 F:      drivers/net/irda/
3640 F:      include/net/irda/
3641 F:      net/irda/
3642
3643 IRQ SUBSYSTEM
3644 M:      Thomas Gleixner <tglx@linutronix.de>
3645 S:      Maintained
3646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core
3647 F:      kernel/irq/
3648
3649 ISAPNP
3650 M:      Jaroslav Kysela <perex@perex.cz>
3651 S:      Maintained
3652 F:      Documentation/isapnp.txt
3653 F:      drivers/pnp/isapnp/
3654 F:      include/linux/isapnp.h
3655
3656 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
3657 M:      Peter Jones <pjones@redhat.com>
3658 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
3659 S:      Maintained
3660 F:      drivers/firmware/iscsi_ibft*
3661
3662 ISCSI
3663 M:      Mike Christie <michaelc@cs.wisc.edu>
3664 L:      open-iscsi@googlegroups.com
3665 W:      www.open-iscsi.org
3666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
3667 S:      Maintained
3668 F:      drivers/scsi/*iscsi*
3669 F:      include/scsi/*iscsi*
3670
3671 ISDN SUBSYSTEM
3672 M:      Karsten Keil <isdn@linux-pingi.de>
3673 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
3674 L:      netdev@vger.kernel.org
3675 W:      http://www.isdn4linux.de
3676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
3677 S:      Maintained
3678 F:      Documentation/isdn/
3679 F:      drivers/isdn/
3680 F:      include/linux/isdn.h
3681 F:      include/linux/isdn/
3682
3683 ISDN SUBSYSTEM (Eicon active card driver)
3684 M:      Armin Schindler <mac@melware.de>
3685 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
3686 W:      http://www.melware.de
3687 S:      Maintained
3688 F:      drivers/isdn/hardware/eicon/
3689
3690 IT87 HARDWARE MONITORING DRIVER
3691 M:      Jean Delvare <khali@linux-fr.org>
3692 L:      lm-sensors@lm-sensors.org
3693 S:      Maintained
3694 F:      Documentation/hwmon/it87
3695 F:      drivers/hwmon/it87.c
3696
3697 IVTV VIDEO4LINUX DRIVER
3698 M:      Andy Walls <awalls@md.metrocast.net>
3699 L:      ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
3700 L:      linux-media@vger.kernel.org
3701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3702 W:      http://www.ivtvdriver.org
3703 S:      Maintained
3704 F:      Documentation/video4linux/*.ivtv
3705 F:      drivers/media/video/ivtv/
3706 F:      include/linux/ivtv*
3707
3708 JC42.4 TEMPERATURE SENSOR DRIVER
3709 M:      Guenter Roeck <linux@roeck-us.net>
3710 L:      lm-sensors@lm-sensors.org
3711 S:      Maintained
3712 F:      drivers/hwmon/jc42.c
3713 F:      Documentation/hwmon/jc42
3714
3715 JFS FILESYSTEM
3716 M:      Dave Kleikamp <shaggy@kernel.org>
3717 L:      jfs-discussion@lists.sourceforge.net
3718 W:      http://jfs.sourceforge.net/
3719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
3720 S:      Maintained
3721 F:      Documentation/filesystems/jfs.txt
3722 F:      fs/jfs/
3723
3724 JME NETWORK DRIVER
3725 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
3726 L:      netdev@vger.kernel.org
3727 S:      Maintained
3728 F:      drivers/net/ethernet/jme.*
3729
3730 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3731 M:      David Woodhouse <dwmw2@infradead.org>
3732 L:      linux-mtd@lists.infradead.org
3733 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
3734 S:      Maintained
3735 F:      fs/jffs2/
3736 F:      include/linux/jffs2.h
3737
3738 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
3739 M:      Andrew Morton <akpm@linux-foundation.org>
3740 M:      Jan Kara <jack@suse.cz>
3741 L:      linux-ext4@vger.kernel.org
3742 S:      Maintained
3743 F:      fs/jbd/
3744 F:      include/linux/ext3_jbd.h
3745 F:      include/linux/jbd.h
3746
3747 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
3748 M:      "Theodore Ts'o" <tytso@mit.edu>
3749 L:      linux-ext4@vger.kernel.org
3750 S:      Maintained
3751 F:      fs/jbd2/
3752 F:      include/linux/jbd2.h
3753
3754 JSM Neo PCI based serial card
3755 M:      Lucas Tavares <lucaskt@linux.vnet.ibm.com>
3756 L:      linux-serial@vger.kernel.org
3757 S:      Maintained
3758 F:      drivers/tty/serial/jsm/
3759
3760 K10TEMP HARDWARE MONITORING DRIVER
3761 M:      Clemens Ladisch <clemens@ladisch.de>
3762 L:      lm-sensors@lm-sensors.org
3763 S:      Maintained
3764 F:      Documentation/hwmon/k10temp
3765 F:      drivers/hwmon/k10temp.c
3766
3767 K8TEMP HARDWARE MONITORING DRIVER
3768 M:      Rudolf Marek <r.marek@assembler.cz>
3769 L:      lm-sensors@lm-sensors.org
3770 S:      Maintained
3771 F:      Documentation/hwmon/k8temp
3772 F:      drivers/hwmon/k8temp.c
3773
3774 KCONFIG
3775 M:      Michal Marek <mmarek@suse.cz>
3776 L:      linux-kbuild@vger.kernel.org
3777 S:      Odd Fixes
3778 F:      Documentation/kbuild/kconfig-language.txt
3779 F:      scripts/kconfig/
3780
3781 KDUMP
3782 M:      Vivek Goyal <vgoyal@redhat.com>
3783 M:      Haren Myneni <hbabu@us.ibm.com>
3784 L:      kexec@lists.infradead.org
3785 W:      http://lse.sourceforge.net/kdump/
3786 S:      Maintained
3787 F:      Documentation/kdump/
3788
3789 KERNEL AUTOMOUNTER v4 (AUTOFS4)
3790 M:      Ian Kent <raven@themaw.net>
3791 L:      autofs@linux.kernel.org
3792 S:      Maintained
3793 F:      fs/autofs4/
3794
3795 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
3796 M:      Michal Marek <mmarek@suse.cz>
3797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
3799 L:      linux-kbuild@vger.kernel.org
3800 S:      Maintained
3801 F:      Documentation/kbuild/
3802 F:      Makefile
3803 F:      scripts/Makefile.*
3804 F:      scripts/basic/
3805 F:      scripts/mk*
3806 F:      scripts/package/
3807
3808 KERNEL JANITORS
3809 L:      kernel-janitors@vger.kernel.org
3810 W:      http://kernelnewbies.org/KernelJanitors
3811 S:      Odd Fixes
3812
3813 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
3814 M:      "J. Bruce Fields" <bfields@fieldses.org>
3815 L:      linux-nfs@vger.kernel.org
3816 W:      http://nfs.sourceforge.net/
3817 S:      Supported
3818 F:      fs/nfsd/
3819 F:      include/linux/nfsd/
3820 F:      fs/lockd/
3821 F:      fs/nfs_common/
3822 F:      net/sunrpc/
3823 F:      include/linux/lockd/
3824 F:      include/linux/sunrpc/
3825
3826 KERNEL VIRTUAL MACHINE (KVM)
3827 M:      Avi Kivity <avi@redhat.com>
3828 M:      Marcelo Tosatti <mtosatti@redhat.com>
3829 L:      kvm@vger.kernel.org
3830 W:      http://kvm.qumranet.com
3831 S:      Supported
3832 F:      Documentation/*/kvm.txt
3833 F:      arch/*/kvm/
3834 F:      arch/*/include/asm/kvm*
3835 F:      include/linux/kvm*
3836 F:      virt/kvm/
3837
3838 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3839 M:      Joerg Roedel <joerg.roedel@amd.com>
3840 L:      kvm@vger.kernel.org
3841 W:      http://kvm.qumranet.com
3842 S:      Supported
3843 F:      arch/x86/include/asm/svm.h
3844 F:      arch/x86/kvm/svm.c
3845
3846 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3847 M:      Alexander Graf <agraf@suse.de>
3848 L:      kvm-ppc@vger.kernel.org
3849 W:      http://kvm.qumranet.com
3850 S:      Supported
3851 F:      arch/powerpc/include/asm/kvm*
3852 F:      arch/powerpc/kvm/
3853
3854 KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
3855 M:      Xiantao Zhang <xiantao.zhang@intel.com>
3856 L:      kvm-ia64@vger.kernel.org
3857 W:      http://kvm.qumranet.com
3858 S:      Supported
3859 F:      Documentation/ia64/kvm.txt
3860 F:      arch/ia64/include/asm/kvm*
3861 F:      arch/ia64/kvm/
3862
3863 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3864 M:      Carsten Otte <cotte@de.ibm.com>
3865 M:      Christian Borntraeger <borntraeger@de.ibm.com>
3866 M:      linux390@de.ibm.com
3867 L:      linux-s390@vger.kernel.org
3868 W:      http://www.ibm.com/developerworks/linux/linux390/
3869 S:      Supported
3870 F:      Documentation/s390/kvm.txt
3871 F:      arch/s390/include/asm/kvm*
3872 F:      arch/s390/kvm/
3873 F:      drivers/s390/kvm/
3874
3875 KEXEC
3876 M:      Eric Biederman <ebiederm@xmission.com>
3877 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
3878 L:      kexec@lists.infradead.org
3879 S:      Maintained
3880 F:      include/linux/kexec.h
3881 F:      kernel/kexec.c
3882
3883 KEYS/KEYRINGS:
3884 M:      David Howells <dhowells@redhat.com>
3885 L:      keyrings@linux-nfs.org
3886 S:      Maintained
3887 F:      Documentation/security/keys.txt
3888 F:      include/linux/key.h
3889 F:      include/linux/key-type.h
3890 F:      include/keys/
3891 F:      security/keys/
3892
3893 KEYS-TRUSTED
3894 M:      David Safford <safford@watson.ibm.com>
3895 M:      Mimi Zohar <zohar@us.ibm.com>
3896 L:      linux-security-module@vger.kernel.org
3897 L:      keyrings@linux-nfs.org
3898 S:      Supported
3899 F:      Documentation/security/keys-trusted-encrypted.txt
3900 F:      include/keys/trusted-type.h
3901 F:      security/keys/trusted.c
3902 F:      security/keys/trusted.h
3903
3904 KEYS-ENCRYPTED
3905 M:      Mimi Zohar <zohar@us.ibm.com>
3906 M:      David Safford <safford@watson.ibm.com>
3907 L:      linux-security-module@vger.kernel.org
3908 L:      keyrings@linux-nfs.org
3909 S:      Supported
3910 F:      Documentation/security/keys-trusted-encrypted.txt
3911 F:      include/keys/encrypted-type.h
3912 F:      security/keys/encrypted.c
3913 F:      security/keys/encrypted.h
3914
3915 KGDB / KDB /debug_core
3916 M:      Jason Wessel <jason.wessel@windriver.com>
3917 W:      http://kgdb.wiki.kernel.org/
3918 L:      kgdb-bugreport@lists.sourceforge.net
3919 S:      Maintained
3920 F:      Documentation/DocBook/kgdb.tmpl
3921 F:      drivers/misc/kgdbts.c
3922 F:      drivers/tty/serial/kgdboc.c
3923 F:      include/linux/kdb.h
3924 F:      include/linux/kgdb.h
3925 F:      kernel/debug/
3926
3927 KMEMCHECK
3928 M:      Vegard Nossum <vegardno@ifi.uio.no>
3929 M:      Pekka Enberg <penberg@kernel.org>
3930 S:      Maintained
3931 F:      Documentation/kmemcheck.txt
3932 F:      arch/x86/include/asm/kmemcheck.h
3933 F:      arch/x86/mm/kmemcheck/
3934 F:      include/linux/kmemcheck.h
3935 F:      mm/kmemcheck.c
3936
3937 KMEMLEAK
3938 M:      Catalin Marinas <catalin.marinas@arm.com>
3939 S:      Maintained
3940 F:      Documentation/kmemleak.txt
3941 F:      include/linux/kmemleak.h
3942 F:      mm/kmemleak.c
3943 F:      mm/kmemleak-test.c
3944
3945 KPROBES
3946 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3947 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3948 M:      "David S. Miller" <davem@davemloft.net>
3949 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
3950 S:      Maintained
3951 F:      Documentation/kprobes.txt
3952 F:      include/linux/kprobes.h
3953 F:      kernel/kprobes.c
3954
3955 KS0108 LCD CONTROLLER DRIVER
3956 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3957 W:      http://miguelojeda.es/auxdisplay.htm
3958 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3959 S:      Maintained
3960 F:      Documentation/auxdisplay/ks0108
3961 F:      drivers/auxdisplay/ks0108.c
3962 F:      include/linux/ks0108.h
3963
3964 LAPB module
3965 L:      linux-x25@vger.kernel.org
3966 S:      Orphan
3967 F:      Documentation/networking/lapb-module.txt
3968 F:      include/*/lapb.h
3969 F:      net/lapb/
3970
3971 LASI 53c700 driver for PARISC
3972 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
3973 L:      linux-scsi@vger.kernel.org
3974 S:      Maintained
3975 F:      Documentation/scsi/53c700.txt
3976 F:      drivers/scsi/53c700*
3977
3978 LED SUBSYSTEM
3979 M:      Richard Purdie <rpurdie@rpsys.net>
3980 S:      Maintained
3981 F:      drivers/leds/
3982 F:      include/linux/leds.h
3983
3984 LEGACY EEPROM DRIVER
3985 M:      Jean Delvare <khali@linux-fr.org>
3986 S:      Maintained
3987 F:      Documentation/misc-devices/eeprom
3988 F:      drivers/misc/eeprom/eeprom.c
3989
3990 LEGO USB Tower driver
3991 M:      Juergen Stuber <starblue@users.sourceforge.net>
3992 L:      legousb-devel@lists.sourceforge.net
3993 W:      http://legousb.sourceforge.net/
3994 S:      Maintained
3995 F:      drivers/usb/misc/legousbtower.c
3996
3997 LGUEST
3998 M:      Rusty Russell <rusty@rustcorp.com.au>
3999 L:      lguest@lists.ozlabs.org
4000 W:      http://lguest.ozlabs.org/
4001 S:      Odd Fixes
4002 F:      Documentation/virtual/lguest/
4003 F:      arch/x86/lguest/
4004 F:      drivers/lguest/
4005 F:      include/linux/lguest*.h
4006 F:      arch/x86/include/asm/lguest*.h
4007
4008 LINUX FOR IBM pSERIES (RS/6000)
4009 M:      Paul Mackerras <paulus@au.ibm.com>
4010 W:      http://www.ibm.com/linux/ltc/projects/ppc
4011 S:      Supported
4012 F:      arch/powerpc/boot/rs6000.h
4013
4014 LINUX FOR POWERPC (32-BIT AND 64-BIT)
4015 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
4016 M:      Paul Mackerras <paulus@samba.org>
4017 W:      http://www.penguinppc.org/
4018 L:      linuxppc-dev@lists.ozlabs.org
4019 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
4021 S:      Supported
4022 F:      Documentation/powerpc/
4023 F:      arch/powerpc/
4024
4025 LINUX FOR POWER MACINTOSH
4026 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
4027 W:      http://www.penguinppc.org/
4028 L:      linuxppc-dev@lists.ozlabs.org
4029 S:      Maintained
4030 F:      arch/powerpc/platforms/powermac/
4031 F:      drivers/macintosh/
4032
4033 LINUX FOR POWERPC EMBEDDED MPC5XXX
4034 M:      Anatolij Gustschin <agust@denx.de>
4035 L:      linuxppc-dev@lists.ozlabs.org
4036 T:      git git://git.denx.de/linux-2.6-agust.git
4037 S:      Maintained
4038 F:      arch/powerpc/platforms/512x/
4039 F:      arch/powerpc/platforms/52xx/
4040
4041 LINUX FOR POWERPC EMBEDDED PPC4XX
4042 M:      Josh Boyer <jwboyer@gmail.com>
4043 M:      Matt Porter <mporter@kernel.crashing.org>
4044 W:      http://www.penguinppc.org/
4045 L:      linuxppc-dev@lists.ozlabs.org
4046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
4047 S:      Maintained
4048 F:      arch/powerpc/platforms/40x/
4049 F:      arch/powerpc/platforms/44x/
4050
4051 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
4052 M:      Grant Likely <grant.likely@secretlab.ca>
4053 W:      http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
4054 L:      linuxppc-dev@lists.ozlabs.org
4055 T:      git git://git.secretlab.ca/git/linux-2.6.git
4056 S:      Maintained
4057 F:      arch/powerpc/*/*virtex*
4058 F:      arch/powerpc/*/*/*virtex*
4059
4060 LINUX FOR POWERPC EMBEDDED PPC8XX
4061 M:      Vitaly Bordug <vitb@kernel.crashing.org>
4062 M:      Marcelo Tosatti <marcelo@kvack.org>
4063 W:      http://www.penguinppc.org/
4064 L:      linuxppc-dev@lists.ozlabs.org
4065 S:      Maintained
4066 F:      arch/powerpc/platforms/8xx/
4067
4068 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
4069 M:      Kumar Gala <galak@kernel.crashing.org>
4070 W:      http://www.penguinppc.org/
4071 L:      linuxppc-dev@lists.ozlabs.org
4072 S:      Maintained
4073 F:      arch/powerpc/platforms/83xx/
4074 F:      arch/powerpc/platforms/85xx/
4075
4076 LINUX FOR POWERPC PA SEMI PWRFICIENT
4077 M:      Olof Johansson <olof@lixom.net>
4078 L:      linuxppc-dev@lists.ozlabs.org
4079 S:      Maintained
4080 F:      arch/powerpc/platforms/pasemi/
4081 F:      drivers/*/*pasemi*
4082 F:      drivers/*/*/*pasemi*
4083
4084 LINUX SECURITY MODULE (LSM) FRAMEWORK
4085 M:      Chris Wright <chrisw@sous-sol.org>
4086 L:      linux-security-module@vger.kernel.org
4087 S:      Supported
4088
4089 LIS3LV02D ACCELEROMETER DRIVER
4090 M:      Eric Piel <eric.piel@tremplin-utc.net>
4091 S:      Maintained
4092 F:      Documentation/misc-devices/lis3lv02d
4093 F:      drivers/misc/lis3lv02d/
4094 F:      drivers/platform/x86/hp_accel.c
4095
4096 LLC (802.2)
4097 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4098 S:      Maintained
4099 F:      include/linux/llc.h
4100 F:      include/net/llc*
4101 F:      net/llc/
4102
4103 LM73 HARDWARE MONITOR DRIVER
4104 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
4105 L:      lm-sensors@lm-sensors.org
4106 S:      Maintained
4107 F:      drivers/hwmon/lm73.c
4108
4109 LM78 HARDWARE MONITOR DRIVER
4110 M:      Jean Delvare <khali@linux-fr.org>
4111 L:      lm-sensors@lm-sensors.org
4112 S:      Maintained
4113 F:      Documentation/hwmon/lm78
4114 F:      drivers/hwmon/lm78.c
4115
4116 LM83 HARDWARE MONITOR DRIVER
4117 M:      Jean Delvare <khali@linux-fr.org>
4118 L:      lm-sensors@lm-sensors.org
4119 S:      Maintained
4120 F:      Documentation/hwmon/lm83
4121 F:      drivers/hwmon/lm83.c
4122
4123 LM90 HARDWARE MONITOR DRIVER
4124 M:      Jean Delvare <khali@linux-fr.org>
4125 L:      lm-sensors@lm-sensors.org
4126 S:      Maintained
4127 F:      Documentation/hwmon/lm90
4128 F:      drivers/hwmon/lm90.c
4129
4130 LOCKDEP AND LOCKSTAT
4131 M:      Peter Zijlstra <peterz@infradead.org>
4132 M:      Ingo Molnar <mingo@redhat.com>
4133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
4134 S:      Maintained
4135 F:      Documentation/lockdep*.txt
4136 F:      Documentation/lockstat.txt
4137 F:      include/linux/lockdep.h
4138 F:      kernel/lockdep*
4139
4140 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
4141 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
4142 L:      linux-ntfs-dev@lists.sourceforge.net
4143 W:      http://www.linux-ntfs.org/content/view/19/37/
4144 S:      Maintained
4145 F:      Documentation/ldm.txt
4146 F:      fs/partitions/ldm.*
4147
4148 LogFS
4149 M:      Joern Engel <joern@logfs.org>
4150 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
4151 L:      logfs@logfs.org
4152 W:      logfs.org
4153 S:      Maintained
4154 F:      fs/logfs/
4155
4156 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
4157 M:      Eric Moore <Eric.Moore@lsi.com>
4158 M:      support@lsi.com
4159 L:      DL-MPTFusionLinux@lsi.com
4160 L:      linux-scsi@vger.kernel.org
4161 W:      http://www.lsilogic.com/support
4162 S:      Supported
4163 F:      drivers/message/fusion/
4164
4165 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
4166 M:      Matthew Wilcox <matthew@wil.cx>
4167 L:      linux-scsi@vger.kernel.org
4168 S:      Maintained
4169 F:      drivers/scsi/sym53c8xx_2/
4170
4171 LTC4261 HARDWARE MONITOR DRIVER
4172 M:      Guenter Roeck <linux@roeck-us.net>
4173 L:      lm-sensors@lm-sensors.org
4174 S:      Maintained
4175 F:      Documentation/hwmon/ltc4261
4176 F:      drivers/hwmon/ltc4261.c
4177
4178 LTP (Linux Test Project)
4179 M:      Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
4180 M:      Garrett Cooper <yanegomi@gmail.com>
4181 M:      Mike Frysinger <vapier@gentoo.org>
4182 M:      Subrata Modak <subrata@linux.vnet.ibm.com>
4183 L:      ltp-list@lists.sourceforge.net (subscribers-only)
4184 W:      http://ltp.sourceforge.net/
4185 T:      git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
4186 S:      Maintained
4187
4188 M32R ARCHITECTURE
4189 M:      Hirokazu Takata <takata@linux-m32r.org>
4190 L:      linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
4191 L:      linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4192 W:      http://www.linux-m32r.org/
4193 S:      Maintained
4194 F:      arch/m32r/
4195
4196 M68K ARCHITECTURE
4197 M:      Geert Uytterhoeven <geert@linux-m68k.org>
4198 L:      linux-m68k@lists.linux-m68k.org
4199 W:      http://www.linux-m68k.org/
4200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
4201 S:      Maintained
4202 F:      arch/m68k/
4203 F:      drivers/zorro/
4204
4205 M68K ON APPLE MACINTOSH
4206 M:      Joshua Thompson <funaho@jurai.org>
4207 W:      http://www.mac.linux-m68k.org/
4208 L:      linux-m68k@lists.linux-m68k.org
4209 S:      Maintained
4210 F:      arch/m68k/mac/
4211
4212 M68K ON HP9000/300
4213 M:      Philip Blundell <philb@gnu.org>
4214 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
4215 S:      Maintained
4216 F:      arch/m68k/hp300/
4217
4218 MAC80211
4219 M:      Johannes Berg <johannes@sipsolutions.net>
4220 L:      linux-wireless@vger.kernel.org
4221 W:      http://linuxwireless.org/
4222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
4223 S:      Maintained
4224 F:      Documentation/networking/mac80211-injection.txt
4225 F:      include/net/mac80211.h
4226 F:      net/mac80211/
4227
4228 MAC80211 PID RATE CONTROL
4229 M:      Stefano Brivio <stefano.brivio@polimi.it>
4230 M:      Mattias Nissler <mattias.nissler@gmx.de>
4231 L:      linux-wireless@vger.kernel.org
4232 W:      http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
4233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
4234 S:      Maintained
4235 F:      net/mac80211/rc80211_pid*
4236
4237 MACVLAN DRIVER
4238 M:      Patrick McHardy <kaber@trash.net>
4239 L:      netdev@vger.kernel.org
4240 S:      Maintained
4241 F:      drivers/net/macvlan.c
4242 F:      include/linux/if_macvlan.h
4243
4244 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
4245 M:      Michael Kerrisk <mtk.manpages@gmail.com>
4246 W:      http://www.kernel.org/doc/man-pages
4247 L:      linux-man@vger.kernel.org
4248 S:      Maintained
4249
4250 MARVELL LIBERTAS WIRELESS DRIVER
4251 M:      Dan Williams <dcbw@redhat.com>
4252 L:      libertas-dev@lists.infradead.org
4253 S:      Maintained
4254 F:      drivers/net/wireless/libertas/
4255
4256 MARVELL MV643XX ETHERNET DRIVER
4257 M:      Lennert Buytenhek <buytenh@wantstofly.org>
4258 L:      netdev@vger.kernel.org
4259 S:      Maintained
4260 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
4261 F:      include/linux/mv643xx.h
4262
4263 MARVELL MWIFIEX WIRELESS DRIVER
4264 M:      Bing Zhao <bzhao@marvell.com>
4265 L:      linux-wireless@vger.kernel.org
4266 S:      Maintained
4267 F:      drivers/net/wireless/mwifiex/
4268
4269 MARVELL MWL8K WIRELESS DRIVER
4270 M:      Lennert Buytenhek <buytenh@wantstofly.org>
4271 L:      linux-wireless@vger.kernel.org
4272 S:      Odd Fixes
4273 F:      drivers/net/wireless/mwl8k.c
4274
4275 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
4276 M:      Nicolas Pitre <nico@fluxnic.net>
4277 S:      Odd Fixes
4278 F:      drivers/mmc/host/mvsdio.*
4279
4280 MARVELL YUKON / SYSKONNECT DRIVER
4281 M:      Mirko Lindner <mlindner@syskonnect.de>
4282 M:      Ralph Roesler <rroesler@syskonnect.de>
4283 W:      http://www.syskonnect.com
4284 S:      Supported
4285
4286 MATROX FRAMEBUFFER DRIVER
4287 L:      linux-fbdev@vger.kernel.org
4288 S:      Orphan
4289 F:      drivers/video/matrox/matroxfb_*
4290 F:      include/linux/matroxfb.h
4291
4292 MAX1668 TEMPERATURE SENSOR DRIVER
4293 M:      "David George" <david.george@ska.ac.za>
4294 L:      lm-sensors@lm-sensors.org
4295 S:      Maintained
4296 F:      Documentation/hwmon/max1668
4297 F:      drivers/hwmon/max1668.c
4298
4299 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4300 M:      "Hans J. Koch" <hjk@hansjkoch.de>
4301 L:      lm-sensors@lm-sensors.org
4302 S:      Maintained
4303 F:      Documentation/hwmon/max6650
4304 F:      drivers/hwmon/max6650.c
4305
4306 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
4307 M:      Mauro Carvalho Chehab <mchehab@infradead.org>
4308 P:      LinuxTV.org Project
4309 L:      linux-media@vger.kernel.org
4310 W:      http://linuxtv.org
4311 Q:      http://patchwork.kernel.org/project/linux-media/list/
4312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4313 S:      Maintained
4314 F:      Documentation/dvb/
4315 F:      Documentation/video4linux/
4316 F:      Documentation/DocBook/media/
4317 F:      drivers/media/
4318 F:      drivers/staging/media/
4319 F:      include/media/
4320 F:      include/linux/dvb/
4321 F:      include/linux/videodev*.h
4322
4323 MEGARAID SCSI DRIVERS
4324 M:      Neela Syam Kolli <megaraidlinux@lsi.com>
4325 L:      linux-scsi@vger.kernel.org
4326 W:      http://megaraid.lsilogic.com
4327 S:      Maintained
4328 F:      Documentation/scsi/megaraid.txt
4329 F:      drivers/scsi/megaraid.*
4330 F:      drivers/scsi/megaraid/
4331
4332 MEMORY MANAGEMENT
4333 L:      linux-mm@kvack.org
4334 W:      http://www.linux-mm.org
4335 S:      Maintained
4336 F:      include/linux/mm.h
4337 F:      mm/
4338
4339 MEMORY RESOURCE CONTROLLER
4340 M:      Balbir Singh <bsingharora@gmail.com>
4341 M:      Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
4342 M:      KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
4343 L:      cgroups@vger.kernel.org
4344 L:      linux-mm@kvack.org
4345 S:      Maintained
4346 F:      mm/memcontrol.c
4347 F:      mm/page_cgroup.c
4348
4349 MEMORY TECHNOLOGY DEVICES (MTD)
4350 M:      David Woodhouse <dwmw2@infradead.org>
4351 L:      linux-mtd@lists.infradead.org
4352 W:      http://www.linux-mtd.infradead.org/
4353 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
4354 T:      git git://git.infradead.org/mtd-2.6.git
4355 S:      Maintained
4356 F:      drivers/mtd/
4357 F:      include/linux/mtd/
4358 F:      include/mtd/
4359
4360 MICROBLAZE ARCHITECTURE
4361 M:      Michal Simek <monstr@monstr.eu>
4362 L:      microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
4363 W:      http://www.monstr.eu/fdt/
4364 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
4365 S:      Supported
4366 F:      arch/microblaze/
4367
4368 MICROTEK X6 SCANNER
4369 M:      Oliver Neukum <oliver@neukum.name>
4370 S:      Maintained
4371 F:      drivers/usb/image/microtek.*
4372
4373 MIPS
4374 M:      Ralf Baechle <ralf@linux-mips.org>
4375 L:      linux-mips@linux-mips.org
4376 W:      http://www.linux-mips.org/
4377 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
4378 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
4379 S:      Supported
4380 F:      Documentation/mips/
4381 F:      arch/mips/
4382
4383 MISCELLANEOUS MCA-SUPPORT
4384 M:      James Bottomley <James.Bottomley@HansenPartnership.com>
4385 S:      Maintained
4386 F:      Documentation/ia64/mca.txt
4387 F:      Documentation/mca.txt
4388 F:      drivers/mca/
4389 F:      include/linux/mca*
4390
4391 MODULE SUPPORT
4392 M:      Rusty Russell <rusty@rustcorp.com.au>
4393 S:      Maintained
4394 F:      include/linux/module.h
4395 F:      kernel/module.c
4396
4397 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
4398 W:      http://popies.net/meye/
4399 S:      Orphan
4400 F:      Documentation/video4linux/meye.txt
4401 F:      drivers/media/video/meye.*
4402 F:      include/linux/meye.h
4403
4404 MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
4405 M:      Pavel Pisa <ppisa@pikron.com>
4406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4407 S:      Maintained
4408 F:      drivers/mmc/host/imxmmc.*
4409
4410 MOUSE AND MISC DEVICES [GENERAL]
4411 M:      Alessandro Rubini <rubini@ipvvis.unipv.it>
4412 S:      Maintained
4413 F:      drivers/input/mouse/
4414 F:      include/linux/gpio_mouse.h
4415
4416 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
4417 M:      Jiri Slaby <jirislaby@gmail.com>
4418 S:      Maintained
4419 F:      Documentation/serial/moxa-smartio
4420 F:      drivers/tty/mxser.*
4421
4422 MSI LAPTOP SUPPORT
4423 M:      "Lee, Chun-Yi" <jlee@novell.com>
4424 L:      platform-driver-x86@vger.kernel.org
4425 S:      Maintained
4426 F:      drivers/platform/x86/msi-laptop.c
4427
4428 MSI WMI SUPPORT
4429 M:      Anisse Astier <anisse@astier.eu>
4430 L:      platform-driver-x86@vger.kernel.org
4431 S:      Supported
4432 F:      drivers/platform/x86/msi-wmi.c
4433
4434 MULTIFUNCTION DEVICES (MFD)
4435 M:      Samuel Ortiz <sameo@linux.intel.com>
4436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
4437 S:      Supported
4438 F:      drivers/mfd/
4439
4440 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
4441 M:      Chris Ball <cjb@laptop.org>
4442 L:      linux-mmc@vger.kernel.org
4443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4444 S:      Maintained
4445 F:      drivers/mmc/
4446 F:      include/linux/mmc/
4447
4448 MULTIMEDIA CARD (MMC) ETC. OVER SPI
4449 S:      Orphan
4450 F:      drivers/mmc/host/mmc_spi.c
4451 F:      include/linux/spi/mmc_spi.h
4452
4453 MULTISOUND SOUND DRIVER
4454 M:      Andrew Veliath <andrewtv@usa.net>
4455 S:      Maintained
4456 F:      Documentation/sound/oss/MultiSound
4457 F:      sound/oss/msnd*
4458
4459 MULTITECH MULTIPORT CARD (ISICOM)
4460 S:      Orphan
4461 F:      drivers/tty/isicom.c
4462 F:      include/linux/isicom.h
4463
4464 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
4465 M:      Felipe Balbi <balbi@ti.com>
4466 L:      linux-usb@vger.kernel.org
4467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4468 S:      Maintained
4469 F:      drivers/usb/musb/
4470
4471 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
4472 M:      Jon Mason <mason@myri.com>
4473 M:      Andrew Gallatin <gallatin@myri.com>
4474 L:      netdev@vger.kernel.org
4475 W:      http://www.myri.com/scs/download-Myri10GE.html
4476 S:      Supported
4477 F:      drivers/net/ethernet/myricom/myri10ge/
4478
4479 NATSEMI ETHERNET DRIVER (DP8381x)
4480 M:      Tim Hockin <thockin@hockin.org>
4481 S:      Maintained
4482 F:      drivers/net/ethernet/natsemi/natsemi.c
4483
4484 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4485 M:      Daniel Mack <zonque@gmail.com>
4486 S:      Maintained
4487 L:      alsa-devel@alsa-project.org
4488 W:      http://www.native-instruments.com
4489 F:      sound/usb/caiaq/
4490
4491 NATIVE LINUX KVM TOOL
4492 M:      Pekka Enberg <penberg@kernel.org>
4493 M:      Sasha Levin <levinsasha928@gmail.com>
4494 M:      Asias He <asias.hejun@gmail.com>
4495 L:      kvm@vger.kernel.org
4496 S:      Maintained
4497 F:      tools/kvm/
4498
4499 NCP FILESYSTEM
4500 M:      Petr Vandrovec <petr@vandrovec.name>
4501 S:      Odd Fixes
4502 F:      fs/ncpfs/
4503
4504 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
4505 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
4506 L:      linux-scsi@vger.kernel.org
4507 S:      Maintained
4508 F:      drivers/scsi/NCR_D700.*
4509
4510 NETEFFECT IWARP RNIC DRIVER (IW_NES)
4511 M:      Faisal Latif <faisal.latif@intel.com>
4512 L:      linux-rdma@vger.kernel.org
4513 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
4514 S:      Supported
4515 F:      drivers/infiniband/hw/nes/
4516
4517 NETEM NETWORK EMULATOR
4518 M:      Stephen Hemminger <shemminger@vyatta.com>
4519 L:      netem@lists.linux-foundation.org
4520 S:      Maintained
4521 F:      net/sched/sch_netem.c
4522
4523 NETERION 10GbE DRIVERS (s2io/vxge)
4524 M:      Jon Mason <jdmason@kudzu.us>
4525 L:      netdev@vger.kernel.org
4526 W:      http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4527 W:      http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
4528 S:      Supported
4529 F:      Documentation/networking/s2io.txt
4530 F:      Documentation/networking/vxge.txt
4531 F:      drivers/net/ethernet/neterion/
4532
4533 NETFILTER/IPTABLES/IPCHAINS
4534 P:      Harald Welte
4535 P:      Jozsef Kadlecsik
4536 M:      Pablo Neira Ayuso <pablo@netfilter.org>
4537 M:      Patrick McHardy <kaber@trash.net>
4538 L:      netfilter-devel@vger.kernel.org
4539 L:      netfilter@vger.kernel.org
4540 L:      coreteam@netfilter.org
4541 W:      http://www.netfilter.org/
4542 W:      http://www.iptables.org/
4543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-2.6.git
4544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next-2.6.git
4545 S:      Supported
4546 F:      include/linux/netfilter*
4547 F:      include/linux/netfilter/
4548 F:      include/net/netfilter/
4549 F:      net/*/netfilter.c
4550 F:      net/*/netfilter/
4551 F:      net/netfilter/
4552
4553 NETLABEL
4554 M:      Paul Moore <paul@paul-moore.com>
4555 W:      http://netlabel.sf.net
4556 L:      netdev@vger.kernel.org
4557 S:      Maintained
4558 F:      Documentation/netlabel/
4559 F:      include/net/netlabel.h
4560 F:      net/netlabel/
4561
4562 NETROM NETWORK LAYER
4563 M:      Ralf Baechle <ralf@linux-mips.org>
4564 L:      linux-hams@vger.kernel.org
4565 W:      http://www.linux-ax25.org/
4566 S:      Maintained
4567 F:      include/linux/netrom.h
4568 F:      include/net/netrom.h
4569 F:      net/netrom/
4570
4571 NETWORK BLOCK DEVICE (NBD)
4572 M:      Paul Clements <Paul.Clements@steeleye.com>
4573 S:      Maintained
4574 F:      Documentation/blockdev/nbd.txt
4575 F:      drivers/block/nbd.c
4576 F:      include/linux/nbd.h
4577
4578 NETWORK DROP MONITOR
4579 M:      Neil Horman <nhorman@tuxdriver.com>
4580 L:      netdev@vger.kernel.org
4581 S:      Maintained
4582 W:      https://fedorahosted.org/dropwatch/
4583 F:      net/core/drop_monitor.c
4584
4585 NETWORKING [GENERAL]
4586 M:      "David S. Miller" <davem@davemloft.net>
4587 L:      netdev@vger.kernel.org
4588 W:      http://www.linuxfoundation.org/en/Net
4589 W:      http://patchwork.ozlabs.org/project/netdev/list/
4590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
4591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
4592 S:      Maintained
4593 F:      net/
4594 F:      include/net/
4595 F:      include/linux/in.h
4596 F:      include/linux/net.h
4597 F:      include/linux/netdevice.h
4598
4599 NETWORKING [IPv4/IPv6]
4600 M:      "David S. Miller" <davem@davemloft.net>
4601 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
4602 M:      James Morris <jmorris@namei.org>
4603 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4604 M:      Patrick McHardy <kaber@trash.net>
4605 L:      netdev@vger.kernel.org
4606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4607 S:      Maintained
4608 F:      net/ipv4/
4609 F:      net/ipv6/
4610 F:      include/net/ip*
4611 F:      arch/x86/net/*
4612
4613 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4614 M:      Paul Moore <paul@paul-moore.com>
4615 L:      netdev@vger.kernel.org
4616 S:      Maintained
4617
4618 NETWORKING [WIRELESS]
4619 M:      "John W. Linville" <linville@tuxdriver.com>
4620 L:      linux-wireless@vger.kernel.org
4621 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
4622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
4623 S:      Maintained
4624 F:      net/mac80211/
4625 F:      net/rfkill/
4626 F:      net/wireless/
4627 F:      include/net/ieee80211*
4628 F:      include/linux/wireless.h
4629 F:      include/net/iw_handler.h
4630 F:      drivers/net/wireless/
4631
4632 NETWORKING DRIVERS
4633 L:      netdev@vger.kernel.org
4634 W:      http://www.linuxfoundation.org/en/Net
4635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
4637 S:      Odd Fixes
4638 F:      drivers/net/
4639 F:      include/linux/if_*
4640 F:      include/linux/*device.h
4641
4642 NETXEN (1/10) GbE SUPPORT
4643 M:      Sony Chacko <sony.chacko@qlogic.com>
4644 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
4645 L:      netdev@vger.kernel.org
4646 W:      http://www.qlogic.com
4647 S:      Supported
4648 F:      drivers/net/ethernet/qlogic/netxen/
4649
4650 NFC SUBSYSTEM
4651 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
4652 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
4653 M:      Samuel Ortiz <sameo@linux.intel.com>
4654 L:      linux-wireless@vger.kernel.org
4655 S:      Maintained
4656 F:      net/nfc/
4657 F:      include/linux/nfc.h
4658 F:      include/net/nfc/
4659 F:      drivers/nfc/
4660
4661 NFS, SUNRPC, AND LOCKD CLIENTS
4662 M:      Trond Myklebust <Trond.Myklebust@netapp.com>
4663 L:      linux-nfs@vger.kernel.org
4664 W:      http://client.linux-nfs.org
4665 T:      git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
4666 S:      Maintained
4667 F:      fs/lockd/
4668 F:      fs/nfs/
4669 F:      fs/nfs_common/
4670 F:      net/sunrpc/
4671 F:      include/linux/lockd/
4672 F:      include/linux/nfs*
4673 F:      include/linux/sunrpc/
4674
4675 NI5010 NETWORK DRIVER
4676 M:      Jan-Pascal van Best <janpascal@vanbest.org>
4677 M:      Andreas Mohr <andi@lisas.de>
4678 L:      netdev@vger.kernel.org
4679 S:      Maintained
4680 F:      drivers/net/ethernet/racal/ni5010.*
4681
4682 NILFS2 FILESYSTEM
4683 M:      KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
4684 L:      linux-nilfs@vger.kernel.org
4685 W:      http://www.nilfs.org/en/
4686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
4687 S:      Supported
4688 F:      Documentation/filesystems/nilfs2.txt
4689 F:      fs/nilfs2/
4690 F:      include/linux/nilfs2_fs.h
4691
4692 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4693 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
4694 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4695 S:      Maintained
4696 F:      Documentation/scsi/NinjaSCSI.txt
4697 F:      drivers/scsi/pcmcia/nsp_*
4698
4699 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4700 M:      GOTO Masanori <gotom@debian.or.jp>
4701 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
4702 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4703 S:      Maintained
4704 F:      Documentation/scsi/NinjaSCSI.txt
4705 F:      drivers/scsi/nsp32*
4706
4707 NTFS FILESYSTEM
4708 M:      Anton Altaparmakov <anton@tuxera.com>
4709 L:      linux-ntfs-dev@lists.sourceforge.net
4710 W:      http://www.tuxera.com/
4711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
4712 S:      Supported
4713 F:      Documentation/filesystems/ntfs.txt
4714 F:      fs/ntfs/
4715
4716 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
4717 M:      Antonino Daplas <adaplas@gmail.com>
4718 L:      linux-fbdev@vger.kernel.org
4719 S:      Maintained
4720 F:      drivers/video/riva/
4721 F:      drivers/video/nvidia/
4722
4723 OMAP SUPPORT
4724 M:      Tony Lindgren <tony@atomide.com>
4725 L:      linux-omap@vger.kernel.org
4726 W:      http://www.muru.com/linux/omap/
4727 W:      http://linux.omap.com/
4728 Q:      http://patchwork.kernel.org/project/linux-omap/list/
4729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
4730 S:      Maintained
4731 F:      arch/arm/*omap*/
4732
4733 OMAP CLOCK FRAMEWORK SUPPORT
4734 M:      Paul Walmsley <paul@pwsan.com>
4735 L:      linux-omap@vger.kernel.org
4736 S:      Maintained
4737 F:      arch/arm/*omap*/*clock*
4738
4739 OMAP POWER MANAGEMENT SUPPORT
4740 M:      Kevin Hilman <khilman@ti.com>
4741 L:      linux-omap@vger.kernel.org
4742 S:      Maintained
4743 F:      arch/arm/*omap*/*pm*
4744
4745 OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
4746 M:      Rajendra Nayak <rnayak@ti.com>
4747 M:      Paul Walmsley <paul@pwsan.com>
4748 L:      linux-omap@vger.kernel.org
4749 S:      Maintained
4750 F:      arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
4751 F:      arch/arm/mach-omap2/powerdomain44xx.c
4752 F:      arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
4753 F:      arch/arm/mach-omap2/clockdomain44xx.c
4754
4755 OMAP AUDIO SUPPORT
4756 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
4757 L:      alsa-devel@alsa-project.org (subscribers-only)
4758 L:      linux-omap@vger.kernel.org
4759 S:      Maintained
4760 F:      sound/soc/omap/
4761
4762 OMAP FRAMEBUFFER SUPPORT
4763 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4764 L:      linux-fbdev@vger.kernel.org
4765 L:      linux-omap@vger.kernel.org
4766 S:      Maintained
4767 F:      drivers/video/omap/
4768
4769 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
4770 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4771 L:      linux-omap@vger.kernel.org
4772 L:      linux-fbdev@vger.kernel.org
4773 S:      Maintained
4774 F:      drivers/video/omap2/
4775 F:      Documentation/arm/OMAP/DSS
4776
4777 OMAP HARDWARE SPINLOCK SUPPORT
4778 M:      Ohad Ben-Cohen <ohad@wizery.com>
4779 L:      linux-omap@vger.kernel.org
4780 S:      Maintained
4781 F:      drivers/hwspinlock/omap_hwspinlock.c
4782 F:      arch/arm/mach-omap2/hwspinlock.c
4783
4784 OMAP MMC SUPPORT
4785 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
4786 L:      linux-omap@vger.kernel.org
4787 S:      Maintained
4788 F:      drivers/mmc/host/omap.c
4789
4790 OMAP HS MMC SUPPORT
4791 L:      linux-omap@vger.kernel.org
4792 S:      Orphan
4793 F:      drivers/mmc/host/omap_hsmmc.c
4794
4795 OMAP RANDOM NUMBER GENERATOR SUPPORT
4796 M:      Deepak Saxena <dsaxena@plexity.net>
4797 S:      Maintained
4798 F:      drivers/char/hw_random/omap-rng.c
4799
4800 OMAP HWMOD SUPPORT
4801 M:      Benoît Cousson <b-cousson@ti.com>
4802 M:      Paul Walmsley <paul@pwsan.com>
4803 L:      linux-omap@vger.kernel.org
4804 S:      Maintained
4805 F:      arch/arm/mach-omap2/omap_hwmod.c
4806 F:      arch/arm/plat-omap/include/plat/omap_hwmod.h
4807
4808 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4809 M:      Benoît Cousson <b-cousson@ti.com>
4810 L:      linux-omap@vger.kernel.org
4811 S:      Maintained
4812 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4813
4814 OMAP IMAGE SIGNAL PROCESSOR (ISP)
4815 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4816 L:      linux-media@vger.kernel.org
4817 S:      Maintained
4818 F:      drivers/media/video/omap3isp/*
4819
4820 OMAP USB SUPPORT
4821 M:      Felipe Balbi <balbi@ti.com>
4822 L:      linux-usb@vger.kernel.org
4823 L:      linux-omap@vger.kernel.org
4824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4825 S:      Maintained
4826 F:      drivers/usb/*/*omap*
4827 F:      arch/arm/*omap*/usb*
4828
4829 OMFS FILESYSTEM
4830 M:      Bob Copeland <me@bobcopeland.com>
4831 L:      linux-karma-devel@lists.sourceforge.net
4832 S:      Maintained
4833 F:      Documentation/filesystems/omfs.txt
4834 F:      fs/omfs/
4835
4836 OMNIKEY CARDMAN 4000 DRIVER
4837 M:      Harald Welte <laforge@gnumonks.org>
4838 S:      Maintained
4839 F:      drivers/char/pcmcia/cm4000_cs.c
4840 F:      include/linux/cm4000_cs.h
4841
4842 OMNIKEY CARDMAN 4040 DRIVER
4843 M:      Harald Welte <laforge@gnumonks.org>
4844 S:      Maintained
4845 F:      drivers/char/pcmcia/cm4040_cs.*
4846
4847 OMNIVISION OV7670 SENSOR DRIVER
4848 M:      Jonathan Corbet <corbet@lwn.net>
4849 L:      linux-media@vger.kernel.org
4850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4851 S:      Maintained
4852 F:      drivers/media/video/ov7670.c
4853
4854 ONENAND FLASH DRIVER
4855 M:      Kyungmin Park <kyungmin.park@samsung.com>
4856 L:      linux-mtd@lists.infradead.org
4857 S:      Maintained
4858 F:      drivers/mtd/onenand/
4859 F:      include/linux/mtd/onenand*.h
4860
4861 ONSTREAM SCSI TAPE DRIVER
4862 M:      Willem Riede <osst@riede.org>
4863 L:      osst-users@lists.sourceforge.net
4864 L:      linux-scsi@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/scsi/osst*
4867 F:      drivers/scsi/st*
4868
4869 OPENCORES I2C BUS DRIVER
4870 M:      Peter Korsgaard <jacmet@sunsite.dk>
4871 L:      linux-i2c@vger.kernel.org
4872 S:      Maintained
4873 F:      Documentation/i2c/busses/i2c-ocores
4874 F:      drivers/i2c/busses/i2c-ocores.c
4875
4876 OPEN FIRMWARE AND FLATTENED DEVICE TREE
4877 M:      Grant Likely <grant.likely@secretlab.ca>
4878 M:      Rob Herring <rob.herring@calxeda.com>
4879 L:      devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
4880 W:      http://fdt.secretlab.ca
4881 T:      git git://git.secretlab.ca/git/linux-2.6.git
4882 S:      Maintained
4883 F:      Documentation/devicetree
4884 F:      drivers/of
4885 F:      include/linux/of*.h
4886 K:      of_get_property
4887 K:      of_match_table
4888
4889 OPENRISC ARCHITECTURE
4890 M:      Jonas Bonn <jonas@southpole.se>
4891 W:      http://openrisc.net
4892 L:      linux@lists.openrisc.net (moderated for non-subscribers)
4893 S:      Maintained
4894 T:      git git://openrisc.net/~jonas/linux
4895 F:      arch/openrisc
4896
4897 OPL4 DRIVER
4898 M:      Clemens Ladisch <clemens@ladisch.de>
4899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4900 T:      git git://git.alsa-project.org/alsa-kernel.git
4901 S:      Maintained
4902 F:      sound/drivers/opl4/
4903
4904 OPROFILE
4905 M:      Robert Richter <robert.richter@amd.com>
4906 L:      oprofile-list@lists.sf.net
4907 S:      Maintained
4908 F:      arch/*/include/asm/oprofile*.h
4909 F:      arch/*/oprofile/
4910 F:      drivers/oprofile/
4911 F:      include/linux/oprofile.h
4912
4913 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4914 M:      Mark Fasheh <mfasheh@suse.com>
4915 M:      Joel Becker <jlbec@evilplan.org>
4916 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4917 W:      http://oss.oracle.com/projects/ocfs2/
4918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
4919 S:      Supported
4920 F:      Documentation/filesystems/ocfs2.txt
4921 F:      Documentation/filesystems/dlmfs.txt
4922 F:      fs/ocfs2/
4923
4924 ORINOCO DRIVER
4925 L:      linux-wireless@vger.kernel.org
4926 L:      orinoco-users@lists.sourceforge.net
4927 L:      orinoco-devel@lists.sourceforge.net
4928 W:      http://linuxwireless.org/en/users/Drivers/orinoco
4929 W:      http://www.nongnu.org/orinoco/
4930 S:      Orphan
4931 F:      drivers/net/wireless/orinoco/
4932
4933 OSD LIBRARY and FILESYSTEM
4934 M:      Boaz Harrosh <bharrosh@panasas.com>
4935 M:      Benny Halevy <bhalevy@tonian.com>
4936 L:      osd-dev@open-osd.org
4937 W:      http://open-osd.org
4938 T:      git git://git.open-osd.org/open-osd.git
4939 S:      Maintained
4940 F:      drivers/scsi/osd/
4941 F:      include/scsi/osd_*
4942 F:      fs/exofs/
4943
4944 P54 WIRELESS DRIVER
4945 M:      Christian Lamparter <chunkeey@googlemail.com>
4946 L:      linux-wireless@vger.kernel.org
4947 W:      http://wireless.kernel.org/en/users/Drivers/p54
4948 S:      Maintained
4949 F:      drivers/net/wireless/p54/
4950
4951 PA SEMI ETHERNET DRIVER
4952 M:      Olof Johansson <olof@lixom.net>
4953 L:      netdev@vger.kernel.org
4954 S:      Maintained
4955 F:      drivers/net/ethernet/pasemi/*
4956
4957 PA SEMI SMBUS DRIVER
4958 M:      Olof Johansson <olof@lixom.net>
4959 L:      linux-i2c@vger.kernel.org
4960 S:      Maintained
4961 F:      drivers/i2c/busses/i2c-pasemi.c
4962
4963 PADATA PARALLEL EXECUTION MECHANISM
4964 M:      Steffen Klassert <steffen.klassert@secunet.com>
4965 L:      linux-crypto@vger.kernel.org
4966 S:      Maintained
4967 F:      kernel/padata.c
4968 F:      include/linux/padata.h
4969 F:      Documentation/padata.txt
4970
4971 PANASONIC LAPTOP ACPI EXTRAS DRIVER
4972 M:      Harald Welte <laforge@gnumonks.org>
4973 L:      platform-driver-x86@vger.kernel.org
4974 S:      Maintained
4975 F:      drivers/platform/x86/panasonic-laptop.c
4976
4977 PANASONIC MN10300/AM33/AM34 PORT
4978 M:      David Howells <dhowells@redhat.com>
4979 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
4980 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
4981 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4982 S:      Maintained
4983 F:      Documentation/mn10300/
4984 F:      arch/mn10300/
4985
4986 PARALLEL PORT SUPPORT
4987 L:      linux-parport@lists.infradead.org (subscribers-only)
4988 S:      Orphan
4989 F:      drivers/parport/
4990 F:      include/linux/parport*.h
4991 F:      drivers/char/ppdev.c
4992 F:      include/linux/ppdev.h
4993
4994 PARAVIRT_OPS INTERFACE
4995 M:      Jeremy Fitzhardinge <jeremy@goop.org>
4996 M:      Chris Wright <chrisw@sous-sol.org>
4997 M:      Alok Kataria <akataria@vmware.com>
4998 M:      Rusty Russell <rusty@rustcorp.com.au>
4999 L:      virtualization@lists.linux-foundation.org
5000 S:      Supported
5001 F:      Documentation/ia64/paravirt_ops.txt
5002 F:      arch/*/kernel/paravirt*
5003 F:      arch/*/include/asm/paravirt.h
5004
5005 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
5006 M:      Tim Waugh <tim@cyberelk.net>
5007 L:      linux-parport@lists.infradead.org (subscribers-only)
5008 W:      http://www.torque.net/linux-pp.html
5009 S:      Maintained
5010 F:      Documentation/blockdev/paride.txt
5011 F:      drivers/block/paride/
5012
5013 PARISC ARCHITECTURE
5014 M:      Kyle McMartin <kyle@mcmartin.ca>
5015 M:      Helge Deller <deller@gmx.de>
5016 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
5017 L:      linux-parisc@vger.kernel.org
5018 W:      http://www.parisc-linux.org/
5019 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
5020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
5021 S:      Maintained
5022 F:      arch/parisc/
5023 F:      drivers/parisc/
5024
5025 PC87360 HARDWARE MONITORING DRIVER
5026 M:      Jim Cromie <jim.cromie@gmail.com>
5027 L:      lm-sensors@lm-sensors.org
5028 S:      Maintained
5029 F:      Documentation/hwmon/pc87360
5030 F:      drivers/hwmon/pc87360.c
5031
5032 PC8736x GPIO DRIVER
5033 M:      Jim Cromie <jim.cromie@gmail.com>
5034 S:      Maintained
5035 F:      drivers/char/pc8736x_gpio.c
5036
5037 PC87427 HARDWARE MONITORING DRIVER
5038 M:      Jean Delvare <khali@linux-fr.org>
5039 L:      lm-sensors@lm-sensors.org
5040 S:      Maintained
5041 F:      Documentation/hwmon/pc87427
5042 F:      drivers/hwmon/pc87427.c
5043
5044 PCA9532 LED DRIVER
5045 M:      Riku Voipio <riku.voipio@iki.fi>
5046 S:      Maintained
5047 F:      drivers/leds/leds-pca9532.c
5048 F:      include/linux/leds-pca9532.h
5049
5050 PCA9541 I2C BUS MASTER SELECTOR DRIVER
5051 M:      Guenter Roeck <guenter.roeck@ericsson.com>
5052 L:      linux-i2c@vger.kernel.org
5053 S:      Maintained
5054 F:      drivers/i2c/muxes/pca9541.c
5055
5056 PCA9564/PCA9665 I2C BUS DRIVER
5057 M:      Wolfram Sang <w.sang@pengutronix.de>
5058 L:      linux-i2c@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/i2c/algos/i2c-algo-pca.c
5061 F:      drivers/i2c/busses/i2c-pca-*
5062 F:      include/linux/i2c-algo-pca.h
5063 F:      include/linux/i2c-pca-platform.h
5064
5065 PCI ERROR RECOVERY
5066 M:     Linas Vepstas <linasvepstas@gmail.com>
5067 L:      linux-pci@vger.kernel.org
5068 S:      Supported
5069 F:      Documentation/PCI/pci-error-recovery.txt
5070 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
5071
5072 PCI SUBSYSTEM
5073 M:      Jesse Barnes <jbarnes@virtuousgeek.org>
5074 L:      linux-pci@vger.kernel.org
5075 Q:      http://patchwork.kernel.org/project/linux-pci/list/
5076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
5077 S:      Supported
5078 F:      Documentation/PCI/
5079 F:      drivers/pci/
5080 F:      include/linux/pci*
5081
5082 PCI HOTPLUG
5083 M:      Jesse Barnes <jbarnes@virtuousgeek.org>
5084 L:      linux-pci@vger.kernel.org
5085 S:      Supported
5086 F:      drivers/pci/hotplug
5087
5088 PCMCIA SUBSYSTEM
5089 P:      Linux PCMCIA Team
5090 L:      linux-pcmcia@lists.infradead.org
5091 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
5092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
5093 S:      Maintained
5094 F:      Documentation/pcmcia/
5095 F:      drivers/pcmcia/
5096 F:      include/pcmcia/
5097
5098 PCNET32 NETWORK DRIVER
5099 M:      Don Fry <pcnet32@frontier.com>
5100 L:      netdev@vger.kernel.org
5101 S:      Maintained
5102 F:      drivers/net/ethernet/amd/pcnet32.c
5103
5104 PCRYPT PARALLEL CRYPTO ENGINE
5105 M:      Steffen Klassert <steffen.klassert@secunet.com>
5106 L:      linux-crypto@vger.kernel.org
5107 S:      Maintained
5108 F:      crypto/pcrypt.c
5109 F:      include/crypto/pcrypt.h
5110
5111 PER-CPU MEMORY ALLOCATOR
5112 M:      Tejun Heo <tj@kernel.org>
5113 M:      Christoph Lameter <cl@linux-foundation.org>
5114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5115 S:      Maintained
5116 F:      include/linux/percpu*.h
5117 F:      mm/percpu*.c
5118 F:      arch/*/include/asm/percpu.h
5119
5120 PER-TASK DELAY ACCOUNTING
5121 M:      Balbir Singh <bsingharora@gmail.com>
5122 S:      Maintained
5123 F:      include/linux/delayacct.h
5124 F:      kernel/delayacct.c
5125
5126 PERFORMANCE EVENTS SUBSYSTEM
5127 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
5128 M:      Paul Mackerras <paulus@samba.org>
5129 M:      Ingo Molnar <mingo@elte.hu>
5130 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5131 S:      Supported
5132 F:      kernel/events/*
5133 F:      include/linux/perf_event.h
5134 F:      arch/*/kernel/perf_event*.c
5135 F:      arch/*/kernel/*/perf_event*.c
5136 F:      arch/*/kernel/*/*/perf_event*.c
5137 F:      arch/*/include/asm/perf_event.h
5138 F:      arch/*/lib/perf_event*.c
5139 F:      arch/*/kernel/perf_callchain.c
5140 F:      tools/perf/
5141
5142 PERSONALITY HANDLING
5143 M:      Christoph Hellwig <hch@infradead.org>
5144 L:      linux-abi-devel@lists.sourceforge.net
5145 S:      Maintained
5146 F:      include/linux/personality.h
5147
5148 PHONET PROTOCOL
5149 M:      Remi Denis-Courmont <remi.denis-courmont@nokia.com>
5150 S:      Supported
5151 F:      Documentation/networking/phonet.txt
5152 F:      include/linux/phonet.h
5153 F:      include/net/phonet/
5154 F:      net/phonet/
5155
5156 PHRAM MTD DRIVER
5157 M:      Joern Engel <joern@lazybastard.org>
5158 L:      linux-mtd@lists.infradead.org
5159 S:      Maintained
5160 F:      drivers/mtd/devices/phram.c
5161
5162 PIN CONTROL SUBSYSTEM
5163 M:      Linus Walleij <linus.walleij@linaro.org>
5164 S:      Maintained
5165 F:      drivers/pinmux/
5166
5167 PKTCDVD DRIVER
5168 M:      Peter Osterlund <petero2@telia.com>
5169 S:      Maintained
5170 F:      drivers/block/pktcdvd.c
5171 F:      include/linux/pktcdvd.h
5172
5173 PKUNITY SOC DRIVERS
5174 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
5175 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
5176 S:      Maintained
5177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5178 F:      drivers/input/serio/i8042-unicore32io.h
5179 F:      drivers/i2c/busses/i2c-puv3.c
5180 F:      drivers/video/fb-puv3.c
5181 F:      drivers/rtc/rtc-puv3.c
5182
5183 PMBUS HARDWARE MONITORING DRIVERS
5184 M:      Guenter Roeck <guenter.roeck@ericsson.com>
5185 L:      lm-sensors@lm-sensors.org
5186 W:      http://www.lm-sensors.org/
5187 W:      http://www.roeck-us.net/linux/drivers/
5188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5189 S:      Maintained
5190 F:      Documentation/hwmon/pmbus
5191 F:      drivers/hwmon/pmbus/
5192 F:      include/linux/i2c/pmbus.h
5193
5194 PMC SIERRA MaxRAID DRIVER
5195 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
5196 L:      linux-scsi@vger.kernel.org
5197 W:      http://www.pmc-sierra.com/
5198 S:      Supported
5199 F:      drivers/scsi/pmcraid.*
5200
5201 PMC SIERRA PM8001 DRIVER
5202 M:      jack_wang@usish.com
5203 M:      lindar_liu@usish.com
5204 L:      linux-scsi@vger.kernel.org
5205 S:      Supported
5206 F:      drivers/scsi/pm8001/
5207
5208 POSIX CLOCKS and TIMERS
5209 M:      Thomas Gleixner <tglx@linutronix.de>
5210 S:      Supported
5211 F:      fs/timerfd.c
5212 F:      include/linux/timer*
5213 F:      kernel/*timer*
5214
5215 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
5216 M:      Anton Vorontsov <cbou@mail.ru>
5217 M:      David Woodhouse <dwmw2@infradead.org>
5218 T:      git git://git.infradead.org/battery-2.6.git
5219 S:      Maintained
5220 F:      include/linux/power_supply.h
5221 F:      drivers/power/power_supply*
5222
5223 PNP SUPPORT
5224 M:      Adam Belay <abelay@mit.edu>
5225 M:      Bjorn Helgaas <bhelgaas@google.com>
5226 S:      Maintained
5227 F:      drivers/pnp/
5228
5229 PNXxxxx I2C DRIVER
5230 M:      Vitaly Wool <vitalywool@gmail.com>
5231 L:      linux-i2c@vger.kernel.org
5232 S:      Maintained
5233 F:      drivers/i2c/busses/i2c-pnx.c
5234
5235 PPP PROTOCOL DRIVERS AND COMPRESSORS
5236 M:      Paul Mackerras <paulus@samba.org>
5237 L:      linux-ppp@vger.kernel.org
5238 S:      Maintained
5239 F:      drivers/net/ppp/ppp_*
5240
5241 PPP OVER ATM (RFC 2364)
5242 M:      Mitchell Blank Jr <mitch@sfgoth.com>
5243 S:      Maintained
5244 F:      net/atm/pppoatm.c
5245 F:      include/linux/atmppp.h
5246
5247 PPP OVER ETHERNET
5248 M:      Michal Ostrowski <mostrows@earthlink.net>
5249 S:      Maintained
5250 F:      drivers/net/ppp/pppoe.c
5251 F:      drivers/net/ppp/pppox.c
5252
5253 PPP OVER L2TP
5254 M:      James Chapman <jchapman@katalix.com>
5255 S:      Maintained
5256 F:      net/l2tp/l2tp_ppp.c
5257 F:      include/linux/if_pppol2tp.h
5258
5259 PPS SUPPORT
5260 M:      Rodolfo Giometti <giometti@enneenne.com>
5261 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
5262 L:      linuxpps@ml.enneenne.com (subscribers-only)
5263 S:      Maintained
5264 F:      Documentation/pps/
5265 F:      drivers/pps/
5266 F:      include/linux/pps*.h
5267
5268 PPTP DRIVER
5269 M:      Dmitry Kozlov <xeb@mail.ru>
5270 L:      netdev@vger.kernel.org
5271 S:      Maintained
5272 F:      drivers/net/ppp/pptp.c
5273 W:      http://sourceforge.net/projects/accel-pptp
5274
5275 PREEMPTIBLE KERNEL
5276 M:      Robert Love <rml@tech9.net>
5277 L:      kpreempt-tech@lists.sourceforge.net
5278 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5279 S:      Supported
5280 F:      Documentation/preempt-locking.txt
5281 F:      include/linux/preempt.h
5282
5283 PRISM54 WIRELESS DRIVER
5284 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
5285 L:      linux-wireless@vger.kernel.org
5286 W:      http://wireless.kernel.org/en/users/Drivers/p54
5287 S:      Obsolete
5288 F:      drivers/net/wireless/prism54/
5289
5290 PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
5291 M:      Mikael Pettersson <mikpe@it.uu.se>
5292 L:      linux-ide@vger.kernel.org
5293 S:      Maintained
5294 F:      drivers/ata/sata_promise.*
5295
5296 PS3 NETWORK SUPPORT
5297 M:      Geoff Levand <geoff@infradead.org>
5298 L:      netdev@vger.kernel.org
5299 L:      cbe-oss-dev@lists.ozlabs.org
5300 S:      Maintained
5301 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
5302
5303 PS3 PLATFORM SUPPORT
5304 M:      Geoff Levand <geoff@infradead.org>
5305 L:      linuxppc-dev@lists.ozlabs.org
5306 L:      cbe-oss-dev@lists.ozlabs.org
5307 S:      Maintained
5308 F:      arch/powerpc/boot/ps3*
5309 F:      arch/powerpc/include/asm/lv1call.h
5310 F:      arch/powerpc/include/asm/ps3*.h
5311 F:      arch/powerpc/platforms/ps3/
5312 F:      drivers/*/ps3*
5313 F:      drivers/ps3/
5314 F:      drivers/rtc/rtc-ps3.c
5315 F:      drivers/usb/host/*ps3.c
5316 F:      sound/ppc/snd_ps3*
5317
5318 PS3VRAM DRIVER
5319 M:      Jim Paris <jim@jtan.com>
5320 L:      cbe-oss-dev@lists.ozlabs.org
5321 S:      Maintained
5322 F:      drivers/block/ps3vram.c
5323
5324 PTRACE SUPPORT
5325 M:      Roland McGrath <roland@redhat.com>
5326 M:      Oleg Nesterov <oleg@redhat.com>
5327 S:      Maintained
5328 F:      include/asm-generic/syscall.h
5329 F:      include/linux/ptrace.h
5330 F:      include/linux/regset.h
5331 F:      include/linux/tracehook.h
5332 F:      kernel/ptrace.c
5333
5334 PVRUSB2 VIDEO4LINUX DRIVER
5335 M:      Mike Isely <isely@pobox.com>
5336 L:      pvrusb2@isely.net       (subscribers-only)
5337 L:      linux-media@vger.kernel.org
5338 W:      http://www.isely.net/pvrusb2/
5339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
5340 S:      Maintained
5341 F:      Documentation/video4linux/README.pvrusb2
5342 F:      drivers/media/video/pvrusb2/
5343
5344 PXA2xx/PXA3xx SUPPORT
5345 M:      Eric Miao <eric.y.miao@gmail.com>
5346 M:      Russell King <linux@arm.linux.org.uk>
5347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5348 S:      Maintained
5349 F:      arch/arm/mach-pxa/
5350 F:      drivers/pcmcia/pxa2xx*
5351 F:      drivers/spi/pxa2xx*
5352 F:      drivers/usb/gadget/pxa2*
5353 F:      include/sound/pxa2xx-lib.h
5354 F:      sound/arm/pxa*
5355 F:      sound/soc/pxa
5356
5357 PXA168 SUPPORT
5358 M:      Eric Miao <eric.y.miao@gmail.com>
5359 M:      Jason Chagas <jason.chagas@marvell.com>
5360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5362 S:      Maintained
5363
5364 PXA910 SUPPORT
5365 M:      Eric Miao <eric.y.miao@gmail.com>
5366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5368 S:      Maintained
5369
5370 MMP2 SUPPORT (aka ARMADA610)
5371 M:      Haojian Zhuang <haojian.zhuang@marvell.com>
5372 M:      Eric Miao <eric.y.miao@gmail.com>
5373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5375 S:      Maintained
5376
5377 PXA MMCI DRIVER
5378 S:      Orphan
5379
5380 PXA RTC DRIVER
5381 M:      Robert Jarzmik <robert.jarzmik@free.fr>
5382 L:      rtc-linux@googlegroups.com
5383 S:      Maintained
5384
5385 QIB DRIVER
5386 M:      Mike Marciniszyn <infinipath@qlogic.com>
5387 L:      linux-rdma@vger.kernel.org
5388 S:      Supported
5389 F:      drivers/infiniband/hw/qib/
5390
5391 QLOGIC QLA1280 SCSI DRIVER
5392 M:      Michael Reed <mdr@sgi.com>
5393 L:      linux-scsi@vger.kernel.org
5394 S:      Maintained
5395 F:      drivers/scsi/qla1280.[ch]
5396
5397 QLOGIC QLA2XXX FC-SCSI DRIVER
5398 M:      Andrew Vasquez <andrew.vasquez@qlogic.com>
5399 M:      linux-driver@qlogic.com
5400 L:      linux-scsi@vger.kernel.org
5401 S:      Supported
5402 F:      Documentation/scsi/LICENSE.qla2xxx
5403 F:      drivers/scsi/qla2xxx/
5404
5405 QLOGIC QLA4XXX iSCSI DRIVER
5406 M:      Ravi Anand <ravi.anand@qlogic.com>
5407 M:      Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5408 M:      iscsi-driver@qlogic.com
5409 L:      linux-scsi@vger.kernel.org
5410 S:      Supported
5411 F:      drivers/scsi/qla4xxx/
5412
5413 QLOGIC QLA3XXX NETWORK DRIVER
5414 M:      Ron Mercer <ron.mercer@qlogic.com>
5415 M:      linux-driver@qlogic.com
5416 L:      netdev@vger.kernel.org
5417 S:      Supported
5418 F:      Documentation/networking/LICENSE.qla3xxx
5419 F:      drivers/net/ethernet/qlogic/qla3xxx.*
5420
5421 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
5422 M:      Anirban Chakraborty <anirban.chakraborty@qlogic.com>
5423 M:      Sony Chacko <sony.chacko@qlogic.com>
5424 M:      linux-driver@qlogic.com
5425 L:      netdev@vger.kernel.org
5426 S:      Supported
5427 F:      drivers/net/ethernet/qlogic/qlcnic/
5428
5429 QLOGIC QLGE 10Gb ETHERNET DRIVER
5430 M:      Anirban Chakraborty <anirban.chakraborty@qlogic.com>
5431 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
5432 M:      Ron Mercer <ron.mercer@qlogic.com>
5433 M:      linux-driver@qlogic.com
5434 L:      netdev@vger.kernel.org
5435 S:      Supported
5436 F:      drivers/net/ethernet/qlogic/qlge/
5437
5438 QNX4 FILESYSTEM
5439 M:      Anders Larsen <al@alarsen.net>
5440 W:      http://www.alarsen.net/linux/qnx4fs/
5441 S:      Maintained
5442 F:      fs/qnx4/
5443 F:      include/linux/qnx4_fs.h
5444 F:      include/linux/qnxtypes.h
5445
5446 QUALCOMM HEXAGON ARCHITECTURE
5447 M:      Richard Kuo <rkuo@codeaurora.org>
5448 L:      linux-hexagon@vger.kernel.org
5449 S:      Supported
5450 F:      arch/hexagon/
5451
5452 RADOS BLOCK DEVICE (RBD)
5453 F:      include/linux/qnxtypes.h
5454 M:      Yehuda Sadeh <yehuda@hq.newdream.net>
5455 M:      Sage Weil <sage@newdream.net>
5456 M:      ceph-devel@vger.kernel.org
5457 S:      Supported
5458 F:      drivers/block/rbd.c
5459 F:      drivers/block/rbd_types.h
5460
5461 RADEON FRAMEBUFFER DISPLAY DRIVER
5462 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5463 L:      linux-fbdev@vger.kernel.org
5464 S:      Maintained
5465 F:      drivers/video/aty/radeon*
5466 F:      include/linux/radeonfb.h
5467
5468 RAGE128 FRAMEBUFFER DISPLAY DRIVER
5469 M:      Paul Mackerras <paulus@samba.org>
5470 L:      linux-fbdev@vger.kernel.org
5471 S:      Maintained
5472 F:      drivers/video/aty/aty128fb.c
5473
5474 RALINK RT2X00 WIRELESS LAN DRIVER
5475 P:      rt2x00 project
5476 M:      Ivo van Doorn <IvDoorn@gmail.com>
5477 M:      Gertjan van Wingerde <gwingerde@gmail.com>
5478 M:      Helmut Schaa <helmut.schaa@googlemail.com>
5479 L:      linux-wireless@vger.kernel.org
5480 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
5481 W:      http://rt2x00.serialmonkey.com/
5482 S:      Maintained
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
5484 F:      drivers/net/wireless/rt2x00/
5485
5486 RAMDISK RAM BLOCK DEVICE DRIVER
5487 M:      Nick Piggin <npiggin@kernel.dk>
5488 S:      Maintained
5489 F:      Documentation/blockdev/ramdisk.txt
5490 F:      drivers/block/brd.c
5491
5492 RANDOM NUMBER DRIVER
5493 M:      Matt Mackall <mpm@selenic.com>
5494 S:      Maintained
5495 F:      drivers/char/random.c
5496
5497 RAPIDIO SUBSYSTEM
5498 M:      Matt Porter <mporter@kernel.crashing.org>
5499 M:      Alexandre Bounine <alexandre.bounine@idt.com>
5500 S:      Maintained
5501 F:      drivers/rapidio/
5502
5503 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
5504 L:      linux-wireless@vger.kernel.org
5505 S:      Orphan
5506 F:      drivers/net/wireless/ray*
5507
5508 RCUTORTURE MODULE
5509 M:      Josh Triplett <josh@freedesktop.org>
5510 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
5511 S:      Supported
5512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
5513 F:      Documentation/RCU/torture.txt
5514 F:      kernel/rcutorture.c
5515
5516 RDC R-321X SoC
5517 M:      Florian Fainelli <florian@openwrt.org>
5518 S:      Maintained
5519
5520 RDC R6040 FAST ETHERNET DRIVER
5521 M:      Florian Fainelli <florian@openwrt.org>
5522 L:      netdev@vger.kernel.org
5523 S:      Maintained
5524 F:      drivers/net/ethernet/rdc/r6040.c
5525
5526 RDS - RELIABLE DATAGRAM SOCKETS
5527 M:      Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
5528 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
5529 S:      Supported
5530 F:      net/rds/
5531
5532 READ-COPY UPDATE (RCU)
5533 M:      Dipankar Sarma <dipankar@in.ibm.com>
5534 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
5535 W:      http://www.rdrop.com/users/paulmck/rclock/
5536 S:      Supported
5537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
5538 F:      Documentation/RCU/
5539 F:      include/linux/rcu*
5540 F:      include/linux/srcu*
5541 F:      kernel/rcu*
5542 F:      kernel/srcu*
5543 X:      kernel/rcutorture.c
5544
5545 REAL TIME CLOCK (RTC) SUBSYSTEM
5546 M:      Alessandro Zummo <a.zummo@towertech.it>
5547 L:      rtc-linux@googlegroups.com
5548 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
5549 S:      Maintained
5550 F:      Documentation/rtc.txt
5551 F:      drivers/rtc/
5552 F:      include/linux/rtc.h
5553
5554 REISERFS FILE SYSTEM
5555 L:      reiserfs-devel@vger.kernel.org
5556 S:      Supported
5557 F:      fs/reiserfs/
5558
5559 REGISTER MAP ABSTRACTION
5560 M:      Mark Brown <broonie@opensource.wolfsonmicro.com>
5561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
5562 S:      Supported
5563 F:      drivers/base/regmap/
5564 F:      include/linux/regmap.h
5565
5566 RFKILL
5567 M:      Johannes Berg <johannes@sipsolutions.net>
5568 L:      linux-wireless@vger.kernel.org
5569 S:      Maintained
5570 F:      Documentation/rfkill.txt
5571 F:      net/rfkill/
5572
5573 RICOH SMARTMEDIA/XD DRIVER
5574 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5575 S:      Maintained
5576 F:      drivers/mtd/nand/r852.c
5577 F:      drivers/mtd/nand/r852.h
5578
5579 RICOH R5C592 MEMORYSTICK DRIVER
5580 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5581 S:      Maintained
5582 F:      drivers/memstick/host/r592.*
5583
5584 RISCOM8 DRIVER
5585 S:      Orphan
5586 F:      Documentation/serial/riscom8.txt
5587 F:      drivers/staging/tty/riscom8*
5588
5589 ROCKETPORT DRIVER
5590 P:      Comtrol Corp.
5591 W:      http://www.comtrol.com
5592 S:      Maintained
5593 F:      Documentation/serial/rocket.txt
5594 F:      drivers/tty/rocket*
5595
5596 ROSE NETWORK LAYER
5597 M:      Ralf Baechle <ralf@linux-mips.org>
5598 L:      linux-hams@vger.kernel.org
5599 W:      http://www.linux-ax25.org/
5600 S:      Maintained
5601 F:      include/linux/rose.h
5602 F:      include/net/rose.h
5603 F:      net/rose/
5604
5605 RTL8180 WIRELESS DRIVER
5606 M:      "John W. Linville" <linville@tuxdriver.com>
5607 L:      linux-wireless@vger.kernel.org
5608 W:      http://linuxwireless.org/
5609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5610 S:      Maintained
5611 F:      drivers/net/wireless/rtl818x/rtl8180/
5612
5613 RTL8187 WIRELESS DRIVER
5614 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
5615 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
5616 M:      Larry Finger <Larry.Finger@lwfinger.net>
5617 L:      linux-wireless@vger.kernel.org
5618 W:      http://linuxwireless.org/
5619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5620 S:      Maintained
5621 F:      drivers/net/wireless/rtl818x/rtl8187/
5622
5623 RTL8192CE WIRELESS DRIVER
5624 M:      Larry Finger <Larry.Finger@lwfinger.net>
5625 M:      Chaoming Li <chaoming_li@realsil.com.cn>
5626 L:      linux-wireless@vger.kernel.org
5627 W:      http://linuxwireless.org/
5628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5629 S:      Maintained
5630 F:      drivers/net/wireless/rtlwifi/
5631 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
5632
5633 S3 SAVAGE FRAMEBUFFER DRIVER
5634 M:      Antonino Daplas <adaplas@gmail.com>
5635 L:      linux-fbdev@vger.kernel.org
5636 S:      Maintained
5637 F:      drivers/video/savage/
5638
5639 S390
5640 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
5641 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
5642 M:      linux390@de.ibm.com
5643 L:      linux-s390@vger.kernel.org
5644 W:      http://www.ibm.com/developerworks/linux/linux390/
5645 S:      Supported
5646 F:      arch/s390/
5647 F:      drivers/s390/
5648 F:      fs/partitions/ibm.c
5649 F:      Documentation/s390/
5650 F:      Documentation/DocBook/s390*
5651
5652 S390 NETWORK DRIVERS
5653 M:      Ursula Braun <ursula.braun@de.ibm.com>
5654 M:      Frank Blaschka <blaschka@linux.vnet.ibm.com>
5655 M:      linux390@de.ibm.com
5656 L:      linux-s390@vger.kernel.org
5657 W:      http://www.ibm.com/developerworks/linux/linux390/
5658 S:      Supported
5659 F:      drivers/s390/net/
5660
5661 S390 ZCRYPT DRIVER
5662 M:      Holger Dengler <hd@linux.vnet.ibm.com>
5663 M:      linux390@de.ibm.com
5664 L:      linux-s390@vger.kernel.org
5665 W:      http://www.ibm.com/developerworks/linux/linux390/
5666 S:      Supported
5667 F:      drivers/s390/crypto/
5668
5669 S390 ZFCP DRIVER
5670 M:      Steffen Maier <maier@linux.vnet.ibm.com>
5671 M:      linux390@de.ibm.com
5672 L:      linux-s390@vger.kernel.org
5673 W:      http://www.ibm.com/developerworks/linux/linux390/
5674 S:      Supported
5675 F:      drivers/s390/scsi/zfcp_*
5676
5677 S390 IUCV NETWORK LAYER
5678 M:      Ursula Braun <ursula.braun@de.ibm.com>
5679 M:      linux390@de.ibm.com
5680 L:      linux-s390@vger.kernel.org
5681 W:      http://www.ibm.com/developerworks/linux/linux390/
5682 S:      Supported
5683 F:      drivers/s390/net/*iucv*
5684 F:      include/net/iucv/
5685 F:      net/iucv/
5686
5687 S3C24XX SD/MMC Driver
5688 M:      Ben Dooks <ben-linux@fluff.org>
5689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5690 S:      Supported
5691 F:      drivers/mmc/host/s3cmci.*
5692
5693 SAA7146 VIDEO4LINUX-2 DRIVER
5694 M:      Michael Hunold <michael@mihu.de>
5695 L:      linux-media@vger.kernel.org
5696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
5697 W:      http://www.mihu.de/linux/saa7146
5698 S:      Maintained
5699 F:      drivers/media/common/saa7146*
5700 F:      drivers/media/video/*7146*
5701 F:      include/media/*7146*
5702
5703 SAMSUNG AUDIO (ASoC) DRIVERS
5704 M:      Sangbeom Kim <sbkim73@samsung.com>
5705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5706 S:      Supported
5707 F:      sound/soc/samsung
5708
5709 SERIAL DRIVERS
5710 M:      Alan Cox <alan@linux.intel.com>
5711 L:      linux-serial@vger.kernel.org
5712 S:      Maintained
5713 F:      drivers/tty/serial
5714
5715 SYNOPSYS DESIGNWARE DMAC DRIVER
5716 M:      Viresh Kumar <viresh.kumar@st.com>
5717 S:      Maintained
5718 F:      include/linux/dw_dmac.h
5719 F:      drivers/dma/dw_dmac_regs.h
5720 F:      drivers/dma/dw_dmac.c
5721
5722 TIMEKEEPING, NTP
5723 M:      John Stultz <johnstul@us.ibm.com>
5724 M:      Thomas Gleixner <tglx@linutronix.de>
5725 S:      Supported
5726 F:      include/linux/clocksource.h
5727 F:      include/linux/time.h
5728 F:      include/linux/timex.h
5729 F:      kernel/time/clocksource.c
5730 F:      kernel/time/time*.c
5731 F:      kernel/time/ntp.c
5732 F:      drivers/clocksource
5733
5734 TLG2300 VIDEO4LINUX-2 DRIVER
5735 M:      Huang Shijie <shijie8@gmail.com>
5736 M:      Kang Yong <kangyong@telegent.com>
5737 M:      Zhang Xiaobing <xbzhang@telegent.com>
5738 S:      Supported
5739 F:      drivers/media/video/tlg2300
5740
5741 SC1200 WDT DRIVER
5742 M:      Zwane Mwaikambo <zwane@arm.linux.org.uk>
5743 S:      Maintained
5744 F:      drivers/watchdog/sc1200wdt.c
5745
5746 SCHEDULER
5747 M:      Ingo Molnar <mingo@elte.hu>
5748 M:      Peter Zijlstra <peterz@infradead.org>
5749 S:      Maintained
5750 F:      kernel/sched*
5751 F:      include/linux/sched.h
5752
5753 SCORE ARCHITECTURE
5754 M:      Chen Liqin <liqin.chen@sunplusct.com>
5755 M:      Lennox Wu <lennox.wu@gmail.com>
5756 W:      http://www.sunplusct.com
5757 S:      Supported
5758 F:      arch/score/
5759
5760 SCSI CDROM DRIVER
5761 M:      Jens Axboe <axboe@kernel.dk>
5762 L:      linux-scsi@vger.kernel.org
5763 W:      http://www.kernel.dk
5764 S:      Maintained
5765 F:      drivers/scsi/sr*
5766
5767 SCSI RDMA PROTOCOL (SRP) INITIATOR
5768 M:      David Dillow <dillowda@ornl.gov>
5769 L:      linux-rdma@vger.kernel.org
5770 S:      Supported
5771 W:      http://www.openfabrics.org
5772 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5774 F:      drivers/infiniband/ulp/srp/
5775 F:      include/scsi/srp.h
5776
5777 SCSI SG DRIVER
5778 M:      Doug Gilbert <dgilbert@interlog.com>
5779 L:      linux-scsi@vger.kernel.org
5780 W:      http://www.torque.net/sg
5781 S:      Maintained
5782 F:      drivers/scsi/sg.c
5783 F:      include/scsi/sg.h
5784
5785 SCSI SUBSYSTEM
5786 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
5787 L:      linux-scsi@vger.kernel.org
5788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
5791 S:      Maintained
5792 F:      drivers/scsi/
5793 F:      include/scsi/
5794
5795 SCSI TAPE DRIVER
5796 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
5797 L:      linux-scsi@vger.kernel.org
5798 S:      Maintained
5799 F:      Documentation/scsi/st.txt
5800 F:      drivers/scsi/st*
5801
5802 SCTP PROTOCOL
5803 M:      Vlad Yasevich <vladislav.yasevich@hp.com>
5804 M:      Sridhar Samudrala <sri@us.ibm.com>
5805 L:      linux-sctp@vger.kernel.org
5806 W:      http://lksctp.sourceforge.net
5807 S:      Supported
5808 F:      Documentation/networking/sctp.txt
5809 F:      include/linux/sctp.h
5810 F:      include/net/sctp/
5811 F:      net/sctp/
5812
5813 SCx200 CPU SUPPORT
5814 M:      Jim Cromie <jim.cromie@gmail.com>
5815 S:      Odd Fixes
5816 F:      Documentation/i2c/busses/scx200_acb
5817 F:      arch/x86/platform/scx200/
5818 F:      drivers/watchdog/scx200_wdt.c
5819 F:      drivers/i2c/busses/scx200*
5820 F:      drivers/mtd/maps/scx200_docflash.c
5821 F:      include/linux/scx200.h
5822
5823 SCx200 GPIO DRIVER
5824 M:      Jim Cromie <jim.cromie@gmail.com>
5825 S:      Maintained
5826 F:      drivers/char/scx200_gpio.c
5827 F:      include/linux/scx200_gpio.h
5828
5829 SCx200 HRT CLOCKSOURCE DRIVER
5830 M:      Jim Cromie <jim.cromie@gmail.com>
5831 S:      Maintained
5832 F:      drivers/clocksource/scx200_hrt.c
5833
5834 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5835 M:      Sascha Sommer <saschasommer@freenet.de>
5836 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5837 S:      Maintained
5838 F:      drivers/mmc/host/sdricoh_cs.c
5839
5840 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
5841 M:      Chris Ball <cjb@laptop.org>
5842 L:      linux-mmc@vger.kernel.org
5843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5844 S:      Maintained
5845 F:      drivers/mmc/host/sdhci.*
5846
5847 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5848 M:      Anton Vorontsov <avorontsov@ru.mvista.com>
5849 L:      linuxppc-dev@lists.ozlabs.org
5850 L:      linux-mmc@vger.kernel.org
5851 S:      Maintained
5852 F:      drivers/mmc/host/sdhci-of.*
5853
5854 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5855 M:      Ben Dooks <ben-linux@fluff.org>
5856 L:      linux-mmc@vger.kernel.org
5857 S:      Maintained
5858 F:      drivers/mmc/host/sdhci-s3c.c
5859
5860 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5861 M:      Viresh Kumar <viresh.kumar@st.com>
5862 L:      linux-mmc@vger.kernel.org
5863 S:      Maintained
5864 F:      drivers/mmc/host/sdhci-spear.c
5865
5866 SECURITY SUBSYSTEM
5867 M:      James Morris <jmorris@namei.org>
5868 L:      linux-security-module@vger.kernel.org (suggested Cc:)
5869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
5870 W:      http://security.wiki.kernel.org/
5871 S:      Supported
5872 F:      security/
5873
5874 SECURITY CONTACT
5875 M:      Security Officers <security@kernel.org>
5876 S:      Supported
5877
5878 SELINUX SECURITY MODULE
5879 M:      Stephen Smalley <sds@tycho.nsa.gov>
5880 M:      James Morris <jmorris@namei.org>
5881 M:      Eric Paris <eparis@parisplace.org>
5882 L:      selinux@tycho.nsa.gov (subscribers-only, general discussion)
5883 W:      http://selinuxproject.org
5884 T:      git git://git.infradead.org/users/eparis/selinux.git
5885 S:      Supported
5886 F:      include/linux/selinux*
5887 F:      security/selinux/
5888 F:      scripts/selinux/
5889
5890 APPARMOR SECURITY MODULE
5891 M:      John Johansen <john.johansen@canonical.com>
5892 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5893 W:      apparmor.wiki.kernel.org
5894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5895 S:      Supported
5896 F:      security/apparmor/
5897
5898 SENSABLE PHANTOM
5899 M:      Jiri Slaby <jirislaby@gmail.com>
5900 S:      Maintained
5901 F:      drivers/misc/phantom.c
5902 F:      include/linux/phantom.h
5903
5904 SERIAL ATA (SATA) SUBSYSTEM
5905 M:      Jeff Garzik <jgarzik@pobox.com>
5906 L:      linux-ide@vger.kernel.org
5907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
5908 S:      Supported
5909 F:      drivers/ata/
5910 F:      include/linux/ata.h
5911 F:      include/linux/libata.h
5912
5913 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
5914 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
5915 L:      linux-scsi@vger.kernel.org
5916 W:      http://www.emulex.com
5917 S:      Supported
5918 F:      drivers/scsi/be2iscsi/
5919
5920 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5921 M:      Sathya Perla <sathya.perla@emulex.com>
5922 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
5923 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
5924 L:      netdev@vger.kernel.org
5925 W:      http://www.emulex.com
5926 S:      Supported
5927 F:      drivers/net/ethernet/emulex/benet/
5928
5929 SFC NETWORK DRIVER
5930 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5931 M:      Steve Hodgson <shodgson@solarflare.com>
5932 M:      Ben Hutchings <bhutchings@solarflare.com>
5933 L:      netdev@vger.kernel.org
5934 S:      Supported
5935 F:      drivers/net/ethernet/sfc/
5936
5937 SGI GRU DRIVER
5938 M:      Jack Steiner <steiner@sgi.com>
5939 S:      Maintained
5940 F:      drivers/misc/sgi-gru/
5941
5942 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5943 M:      Pat Gefre <pfg@sgi.com>
5944 L:      linux-ia64@vger.kernel.org
5945 S:      Supported
5946 F:      Documentation/ia64/serial.txt
5947 F:      drivers/tty/serial/ioc?_serial.c
5948 F:      include/linux/ioc?.h
5949
5950 SGI VISUAL WORKSTATION 320 AND 540
5951 M:      Andrey Panin <pazke@donpac.ru>
5952 L:      linux-visws-devel@lists.sf.net
5953 W:      http://linux-visws.sf.net
5954 S:      Maintained for 2.6.
5955 F:      Documentation/sgi-visws.txt
5956
5957 SGI XP/XPC/XPNET DRIVER
5958 M:      Robin Holt <holt@sgi.com>
5959 S:      Maintained
5960 F:      drivers/misc/sgi-xp/
5961
5962 SIMPLE FIRMWARE INTERFACE (SFI)
5963 M:      Len Brown <lenb@kernel.org>
5964 L:      sfi-devel@simplefirmware.org
5965 W:      http://simplefirmware.org/
5966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
5967 S:      Supported
5968 F:      arch/x86/platform/sfi/
5969 F:      drivers/sfi/
5970 F:      include/linux/sfi*.h
5971
5972 SIMTEC EB110ATX (Chalice CATS)
5973 P:      Ben Dooks
5974 P:      Vincent Sanders <vince@simtec.co.uk>
5975 M:      Simtec Linux Team <linux@simtec.co.uk>
5976 W:      http://www.simtec.co.uk/products/EB110ATX/
5977 S:      Supported
5978
5979 SIMTEC EB2410ITX (BAST)
5980 P:      Ben Dooks
5981 P:      Vincent Sanders <vince@simtec.co.uk>
5982 M:      Simtec Linux Team <linux@simtec.co.uk>
5983 W:      http://www.simtec.co.uk/products/EB2410ITX/
5984 S:      Supported
5985 F:      arch/arm/mach-s3c2410/mach-bast.c
5986 F:      arch/arm/mach-s3c2410/bast-ide.c
5987 F:      arch/arm/mach-s3c2410/bast-irq.c
5988
5989 TI DAVINCI MACHINE SUPPORT
5990 M:      Sekhar Nori <nsekhar@ti.com>
5991 M:      Kevin Hilman <khilman@ti.com>
5992 L:      davinci-linux-open-source@linux.davincidsp.com (subscribers-only)
5993 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
5994 S:      Supported
5995 F:      arch/arm/mach-davinci
5996
5997 SIS 190 ETHERNET DRIVER
5998 M:      Francois Romieu <romieu@fr.zoreil.com>
5999 L:      netdev@vger.kernel.org
6000 S:      Maintained
6001 F:      drivers/net/ethernet/sis/sis190.c
6002
6003 SIS 900/7016 FAST ETHERNET DRIVER
6004 M:      Daniele Venzano <venza@brownhat.org>
6005 W:      http://www.brownhat.org/sis900.html
6006 L:      netdev@vger.kernel.org
6007 S:      Maintained
6008 F:      drivers/net/ethernet/sis/sis900.*
6009
6010 SIS 96X I2C/SMBUS DRIVER
6011 M:      "Mark M. Hoffman" <mhoffman@lightlink.com>
6012 L:      linux-i2c@vger.kernel.org
6013 S:      Maintained
6014 F:      Documentation/i2c/busses/i2c-sis96x
6015 F:      drivers/i2c/busses/i2c-sis96x.c
6016
6017 SIS FRAMEBUFFER DRIVER
6018 M:      Thomas Winischhofer <thomas@winischhofer.net>
6019 W:      http://www.winischhofer.net/linuxsisvga.shtml
6020 S:      Maintained
6021 F:      Documentation/fb/sisfb.txt
6022 F:      drivers/video/sis/
6023 F:      include/video/sisfb.h
6024
6025 SIS USB2VGA DRIVER
6026 M:      Thomas Winischhofer <thomas@winischhofer.net>
6027 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
6028 S:      Maintained
6029 F:      drivers/usb/misc/sisusbvga/
6030
6031 SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
6032 M:      Stephen Hemminger <shemminger@vyatta.com>
6033 L:      netdev@vger.kernel.org
6034 S:      Maintained
6035 F:      drivers/net/ethernet/marvell/sk*
6036
6037 SLAB ALLOCATOR
6038 M:      Christoph Lameter <cl@linux-foundation.org>
6039 M:      Pekka Enberg <penberg@kernel.org>
6040 M:      Matt Mackall <mpm@selenic.com>
6041 L:      linux-mm@kvack.org
6042 S:      Maintained
6043 F:      include/linux/sl?b*.h
6044 F:      mm/sl?b.c
6045
6046 SMC91x ETHERNET DRIVER
6047 M:      Nicolas Pitre <nico@fluxnic.net>
6048 S:      Odd Fixes
6049 F:      drivers/net/ethernet/smsc/smc91x.*
6050
6051 SMM665 HARDWARE MONITOR DRIVER
6052 M:      Guenter Roeck <linux@roeck-us.net>
6053 L:      lm-sensors@lm-sensors.org
6054 S:      Maintained
6055 F:      Documentation/hwmon/smm665
6056 F:      drivers/hwmon/smm665.c
6057
6058 SMSC EMC2103 HARDWARE MONITOR DRIVER
6059 M:      Steve Glendinning <steve.glendinning@smsc.com>
6060 L:      lm-sensors@lm-sensors.org
6061 S:      Supported
6062 F:      Documentation/hwmon/emc2103
6063 F:      drivers/hwmon/emc2103.c
6064
6065 SMSC SCH5627 HARDWARE MONITOR DRIVER
6066 M:      Hans de Goede <hdegoede@redhat.com>
6067 L:      lm-sensors@lm-sensors.org
6068 S:      Supported
6069 F:      Documentation/hwmon/sch5627
6070 F:      drivers/hwmon/sch5627.c
6071
6072 SMSC47B397 HARDWARE MONITOR DRIVER
6073 M:      "Mark M. Hoffman" <mhoffman@lightlink.com>
6074 L:      lm-sensors@lm-sensors.org
6075 S:      Maintained
6076 F:      Documentation/hwmon/smsc47b397
6077 F:      drivers/hwmon/smsc47b397.c
6078
6079 SMSC911x ETHERNET DRIVER
6080 M:      Steve Glendinning <steve.glendinning@smsc.com>
6081 L:      netdev@vger.kernel.org
6082 S:      Supported
6083 F:      include/linux/smsc911x.h
6084 F:      drivers/net/ethernet/smsc/smsc911x.*
6085
6086 SMSC9420 PCI ETHERNET DRIVER
6087 M:      Steve Glendinning <steve.glendinning@smsc.com>
6088 L:      netdev@vger.kernel.org
6089 S:      Supported
6090 F:      drivers/net/ethernet/smsc/smsc9420.*
6091
6092 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
6093 M:      Steve Glendinning <steve.glendinning@smsc.com>
6094 L:      linux-fbdev@vger.kernel.org
6095 S:      Supported
6096 F:      drivers/video/smscufx.c
6097
6098 SN-IA64 (Itanium) SUB-PLATFORM
6099 M:      Jes Sorensen <jes@sgi.com>
6100 L:      linux-altix@sgi.com
6101 L:      linux-ia64@vger.kernel.org
6102 W:      http://www.sgi.com/altix
6103 S:      Maintained
6104 F:      arch/ia64/sn/
6105
6106 SOC-CAMERA V4L2 SUBSYSTEM
6107 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6108 L:      linux-media@vger.kernel.org
6109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
6110 S:      Maintained
6111 F:      include/media/v4l2*
6112 F:      drivers/media/video/v4l2*
6113
6114 SOEKRIS NET48XX LED SUPPORT
6115 M:      Chris Boot <bootc@bootc.net>
6116 S:      Maintained
6117 F:      drivers/leds/leds-net48xx.c
6118
6119 SOFTWARE RAID (Multiple Disks) SUPPORT
6120 M:      Neil Brown <neilb@suse.de>
6121 L:      linux-raid@vger.kernel.org
6122 S:      Supported
6123 F:      drivers/md/
6124 F:      include/linux/raid/
6125
6126 SONIC NETWORK DRIVER
6127 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
6128 L:      netdev@vger.kernel.org
6129 S:      Maintained
6130 F:      drivers/net/ethernet/natsemi/sonic.*
6131
6132 SONICS SILICON BACKPLANE DRIVER (SSB)
6133 M:      Michael Buesch <m@bues.ch>
6134 L:      netdev@vger.kernel.org
6135 S:      Maintained
6136 F:      drivers/ssb/
6137 F:      include/linux/ssb/
6138
6139 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
6140 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
6141 L:      linux-wireless@vger.kernel.org
6142 S:      Maintained
6143 F:      drivers/bcma/
6144 F:      include/linux/bcma/
6145
6146 SONY VAIO CONTROL DEVICE DRIVER
6147 M:      Mattia Dongili <malattia@linux.it>
6148 L:      platform-driver-x86@vger.kernel.org
6149 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
6150 S:      Maintained
6151 F:      Documentation/laptops/sony-laptop.txt
6152 F:      drivers/char/sonypi.c
6153 F:      drivers/platform/x86/sony-laptop.c
6154 F:      include/linux/sony-laptop.h
6155
6156 SONY MEMORYSTICK CARD SUPPORT
6157 M:      Alex Dubov <oakad@yahoo.com>
6158 W:      http://tifmxx.berlios.de/
6159 S:      Maintained
6160 F:      drivers/memstick/host/tifm_ms.c
6161
6162 SOUND
6163 M:      Jaroslav Kysela <perex@perex.cz>
6164 M:      Takashi Iwai <tiwai@suse.de>
6165 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6166 W:      http://www.alsa-project.org/
6167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6168 T:      git git://git.alsa-project.org/alsa-kernel.git
6169 S:      Maintained
6170 F:      Documentation/sound/
6171 F:      include/sound/
6172 F:      sound/
6173
6174 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
6175 M:      Liam Girdwood <lrg@ti.com>
6176 M:      Mark Brown <broonie@opensource.wolfsonmicro.com>
6177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
6178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6179 W:      http://alsa-project.org/main/index.php/ASoC
6180 S:      Supported
6181 F:      sound/soc/
6182 F:      include/sound/soc*
6183
6184 SPARC + UltraSPARC (sparc/sparc64)
6185 M:      "David S. Miller" <davem@davemloft.net>
6186 L:      sparclinux@vger.kernel.org
6187 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
6188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
6190 S:      Maintained
6191 F:      arch/sparc/
6192 F:      drivers/sbus/
6193
6194 SPARC SERIAL DRIVERS
6195 M:      "David S. Miller" <davem@davemloft.net>
6196 L:      sparclinux@vger.kernel.org
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
6199 S:      Maintained
6200 F:      drivers/tty/serial/suncore.c
6201 F:      drivers/tty/serial/suncore.h
6202 F:      drivers/tty/serial/sunhv.c
6203 F:      drivers/tty/serial/sunsab.c
6204 F:      drivers/tty/serial/sunsab.h
6205 F:      drivers/tty/serial/sunsu.c
6206 F:      drivers/tty/serial/sunzilog.c
6207 F:      drivers/tty/serial/sunzilog.h
6208
6209 SPEAR PLATFORM SUPPORT
6210 M:      Viresh Kumar <viresh.kumar@st.com>
6211 W:      http://www.st.com/spear
6212 S:      Maintained
6213 F:      arch/arm/plat-spear/
6214
6215 SPEAR3XX MACHINE SUPPORT
6216 M:      Viresh Kumar <viresh.kumar@st.com>
6217 W:      http://www.st.com/spear
6218 S:      Maintained
6219 F:      arch/arm/mach-spear3xx/
6220
6221 SPEAR6XX MACHINE SUPPORT
6222 M:      Rajeev Kumar <rajeev-dlh.kumar@st.com>
6223 W:      http://www.st.com/spear
6224 S:      Maintained
6225 F:      arch/arm/mach-spear6xx/
6226
6227 SPEAR CLOCK FRAMEWORK SUPPORT
6228 M:      Viresh Kumar <viresh.kumar@st.com>
6229 W:      http://www.st.com/spear
6230 S:      Maintained
6231 F:      arch/arm/mach-spear*/clock.c
6232 F:      arch/arm/mach-spear*/include/mach/clkdev.h
6233 F:      arch/arm/plat-spear/clock.c
6234 F:      arch/arm/plat-spear/include/plat/clkdev.h
6235 F:      arch/arm/plat-spear/include/plat/clock.h
6236
6237 SPEAR PAD MULTIPLEXING SUPPORT
6238 M:      Viresh Kumar <viresh.kumar@st.com>
6239 W:      http://www.st.com/spear
6240 S:      Maintained
6241 F:      arch/arm/plat-spear/include/plat/padmux.h
6242 F:      arch/arm/plat-spear/padmux.c
6243 F:      arch/arm/mach-spear*/spear*xx.c
6244 F:      arch/arm/mach-spear*/include/mach/generic.h
6245 F:      arch/arm/mach-spear3xx/spear3*0.c
6246 F:      arch/arm/mach-spear3xx/spear3*0_evb.c
6247 F:      arch/arm/mach-spear6xx/spear600.c
6248 F:      arch/arm/mach-spear6xx/spear600_evb.c
6249
6250 SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
6251 S:      Orphan
6252 F:      Documentation/serial/specialix.txt
6253 F:      drivers/staging/tty/specialix*
6254
6255 SPI SUBSYSTEM
6256 M:      Grant Likely <grant.likely@secretlab.ca>
6257 L:      spi-devel-general@lists.sourceforge.net
6258 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
6259 T:      git git://git.secretlab.ca/git/linux-2.6.git
6260 S:      Maintained
6261 F:      Documentation/spi/
6262 F:      drivers/spi/
6263 F:      include/linux/spi/
6264
6265 SPIDERNET NETWORK DRIVER for CELL
6266 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6267 M:      Jens Osterkamp <jens@de.ibm.com>
6268 L:      netdev@vger.kernel.org
6269 S:      Supported
6270 F:      Documentation/networking/spider_net.txt
6271 F:      drivers/net/ethernet/toshiba/spider_net*
6272
6273 SPU FILE SYSTEM
6274 M:      Jeremy Kerr <jk@ozlabs.org>
6275 L:      linuxppc-dev@lists.ozlabs.org
6276 L:      cbe-oss-dev@lists.ozlabs.org
6277 W:      http://www.ibm.com/developerworks/power/cell/
6278 S:      Supported
6279 F:      Documentation/filesystems/spufs.txt
6280 F:      arch/powerpc/platforms/cell/spufs/
6281
6282 SQUASHFS FILE SYSTEM
6283 M:      Phillip Lougher <phillip@squashfs.org.uk>
6284 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
6285 W:      http://squashfs.org.uk
6286 S:      Maintained
6287 F:      Documentation/filesystems/squashfs.txt
6288 F:      fs/squashfs/
6289
6290 SRM (Alpha) environment access
6291 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
6292 S:      Maintained
6293 F:      arch/alpha/kernel/srm_env.c
6294
6295 STABLE BRANCH
6296 M:      Greg Kroah-Hartman <greg@kroah.com>
6297 L:      stable@kernel.org
6298 S:      Maintained
6299
6300 STAGING SUBSYSTEM
6301 M:      Greg Kroah-Hartman <gregkh@suse.de>
6302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
6303 L:      devel@driverdev.osuosl.org
6304 S:      Maintained
6305 F:      drivers/staging/
6306
6307 STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6308 M:      Henk de Groot <pe1dnn@amsat.org>
6309 S:      Odd Fixes
6310 F:      drivers/staging/wlags49_h2/
6311 F:      drivers/staging/wlags49_h25/
6312
6313 STAGING - ASUS OLED
6314 M:      Jakub Schmidtke <sjakub@gmail.com>
6315 S:      Odd Fixes
6316 F:      drivers/staging/asus_oled/
6317
6318 STAGING - COMEDI
6319 M:      Ian Abbott <abbotti@mev.co.uk>
6320 M:      Mori Hess <fmhess@users.sourceforge.net>
6321 S:      Odd Fixes
6322 F:      drivers/staging/comedi/
6323
6324 STAGING - CONEXANT CX25821 PCIE BRIDGE
6325 L:      linux-media@vger.kernel.org
6326 S:      Odd Fixes
6327 F:      drivers/staging/cx25821/
6328
6329 STAGING - CRYSTAL HD VIDEO DECODER
6330 M:      Naren Sankar <nsankar@broadcom.com>
6331 M:      Jarod Wilson <jarod@wilsonet.com>
6332 M:      Scott Davilla <davilla@4pi.com>
6333 M:      Manu Abraham <abraham.manu@gmail.com>
6334 S:      Odd Fixes
6335 F:      drivers/staging/crystalhd/
6336
6337 STAGING - CYPRESS WESTBRIDGE SUPPORT
6338 M:      David Cross <david.cross@cypress.com>
6339 S:      Odd Fixes
6340 F:      drivers/staging/westbridge/
6341
6342 STAGING - ECHO CANCELLER
6343 M:      Steve Underwood <steveu@coppice.org>
6344 M:      David Rowe <david@rowetel.com>
6345 S:      Odd Fixes
6346 F:      drivers/staging/echo/
6347
6348 STAGING - ET131X NETWORK DRIVER
6349 M:      Mark Einon <mark.einon@gmail.com>
6350 S:      Odd Fixes
6351 F:      drivers/staging/et131x/
6352
6353 STAGING - FLARION FT1000 DRIVERS
6354 M:      Marek Belisko <marek.belisko@gmail.com>
6355 S:      Odd Fixes
6356 F:      drivers/staging/ft1000/
6357
6358 STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6359 M:      David Täht <d@teklibre.com>
6360 S:      Odd Fixes
6361 F:      drivers/staging/frontier/
6362
6363 STAGING - HYPER-V (MICROSOFT)
6364 M:      Hank Janssen <hjanssen@microsoft.com>
6365 M:      Haiyang Zhang <haiyangz@microsoft.com>
6366 S:      Odd Fixes
6367 F:      drivers/staging/hv/
6368
6369 STAGING - INDUSTRIAL IO
6370 M:      Jonathan Cameron <jic23@cam.ac.uk>
6371 L:      linux-iio@vger.kernel.org
6372 S:      Odd Fixes
6373 F:      drivers/staging/iio/
6374
6375 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6376 M:      Jarod Wilson <jarod@wilsonet.com>
6377 W:      http://www.lirc.org/
6378 S:      Odd Fixes
6379 F:      drivers/staging/lirc/
6380
6381 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
6382 M:      Julian Andres Klode <jak@jak-linux.org>
6383 M:      Marc Dietrich <marvin24@gmx.de>
6384 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
6385 S:      Maintained
6386 F:      drivers/staging/nvec/
6387
6388 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6389 M:      Andres Salomon <dilinger@queued.net>
6390 M:      Chris Ball <cjb@laptop.org>
6391 M:      Jon Nettleton <jon.nettleton@gmail.com>
6392 W:      http://wiki.laptop.org/go/DCON
6393 S:      Odd Fixes
6394 F:      drivers/staging/olpc_dcon/
6395
6396 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
6397 M:      Willy Tarreau <willy@meta-x.org>
6398 S:      Odd Fixes
6399 F:      drivers/staging/panel/
6400
6401 STAGING - REALTEK RTL8712U DRIVERS
6402 M:      Larry Finger <Larry.Finger@lwfinger.net>
6403 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6404 S:      Odd Fixes
6405 F:      drivers/staging/rtl8712/
6406
6407 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6408 M:      Teddy Wang <teddy.wang@siliconmotion.com.cn>
6409 S:      Odd Fixes
6410 F:      drivers/staging/sm7xx/
6411
6412 STAGING - SOFTLOGIC 6x10 MPEG CODEC
6413 M:      Ben Collins <bcollins@bluecherry.net>
6414 S:      Odd Fixes
6415 F:      drivers/staging/solo6x10/
6416
6417 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6418 M:      William Hubbs <w.d.hubbs@gmail.com>
6419 M:      Chris Brannon <chris@the-brannons.com>
6420 M:      Kirk Reiser <kirk@braille.uwo.ca>
6421 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
6422 L:      speakup@braille.uwo.ca
6423 W:      http://www.linux-speakup.org/
6424 S:      Odd Fixes
6425 F:      drivers/staging/speakup/
6426
6427 STAGING - TI DSP BRIDGE DRIVERS
6428 M:      Omar Ramirez Luna <omar.ramirez@ti.com>
6429 S:      Odd Fixes
6430 F:      drivers/staging/tidspbridge/
6431
6432 STAGING - TRIDENT TVMASTER TMxxxx USB VIDEO CAPTURE DRIVERS
6433 L:      linux-media@vger.kernel.org
6434 S:      Odd Fixes
6435 F:      drivers/staging/tm6000/
6436
6437 STAGING - USB ENE SM/MS CARD READER DRIVER
6438 M:      Al Cho <acho@novell.com>
6439 S:      Odd Fixes
6440 F:      drivers/staging/keucr/
6441
6442 STAGING - VIA VT665X DRIVERS
6443 M:      Forest Bond <forest@alittletooquiet.net>
6444 S:      Odd Fixes
6445 F:      drivers/staging/vt665?/
6446
6447 STAGING - WINBOND IS89C35 WLAN USB DRIVER
6448 M:      Pavel Machek <pavel@ucw.cz>
6449 S:      Odd Fixes
6450 F:      drivers/staging/winbond/
6451
6452 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
6453 M:      Arnaud Patard <apatard@mandriva.com>
6454 S:      Odd Fixes
6455 F:      drivers/staging/xgifb/
6456
6457 STARFIRE/DURALAN NETWORK DRIVER
6458 M:      Ion Badulescu <ionut@badula.org>
6459 S:      Odd Fixes
6460 F:      drivers/net/ethernet/adaptec/starfire*
6461
6462 SUN3/3X
6463 M:      Sam Creasey <sammy@sammy.net>
6464 W:      http://sammy.net/sun3/
6465 S:      Maintained
6466 F:      arch/m68k/kernel/*sun3*
6467 F:      arch/m68k/sun3*/
6468 F:      arch/m68k/include/asm/sun3*
6469 F:      drivers/net/ethernet/i825xx/sun3*
6470
6471 SUPERH
6472 M:      Paul Mundt <lethal@linux-sh.org>
6473 L:      linux-sh@vger.kernel.org
6474 W:      http://www.linux-sh.org
6475 Q:      http://patchwork.kernel.org/project/linux-sh/list/
6476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest
6477 S:      Supported
6478 F:      Documentation/sh/
6479 F:      arch/sh/
6480 F:      drivers/sh/
6481
6482 SUSPEND TO RAM
6483 M:      Len Brown <len.brown@intel.com>
6484 M:      Pavel Machek <pavel@ucw.cz>
6485 M:      "Rafael J. Wysocki" <rjw@sisk.pl>
6486 L:      linux-pm@vger.kernel.org
6487 S:      Supported
6488 F:      Documentation/power/
6489 F:      arch/x86/kernel/acpi/
6490 F:      drivers/base/power/
6491 F:      kernel/power/
6492 F:      include/linux/suspend.h
6493 F:      include/linux/freezer.h
6494 F:      include/linux/pm.h
6495
6496 SVGA HANDLING
6497 M:      Martin Mares <mj@ucw.cz>
6498 L:      linux-video@atrey.karlin.mff.cuni.cz
6499 S:      Maintained
6500 F:      Documentation/svga.txt
6501 F:      arch/x86/boot/video*
6502
6503 SYSV FILESYSTEM
6504 M:      Christoph Hellwig <hch@infradead.org>
6505 S:      Maintained
6506 F:      Documentation/filesystems/sysv-fs.txt
6507 F:      fs/sysv/
6508 F:      include/linux/sysv_fs.h
6509
6510 TARGET SUBSYSTEM
6511 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
6512 L:      linux-scsi@vger.kernel.org
6513 L:      target-devel@vger.kernel.org
6514 L:      http://groups.google.com/group/linux-iscsi-target-dev
6515 W:      http://www.linux-iscsi.org
6516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6517 S:      Supported
6518 F:      drivers/target/
6519 F:      include/target/
6520 F:      Documentation/target/
6521
6522 TASKSTATS STATISTICS INTERFACE
6523 M:      Balbir Singh <bsingharora@gmail.com>
6524 S:      Maintained
6525 F:      Documentation/accounting/taskstats*
6526 F:      include/linux/taskstats*
6527 F:      kernel/taskstats.c
6528
6529 TC CLASSIFIER
6530 M:      Jamal Hadi Salim <hadi@cyberus.ca>
6531 L:      netdev@vger.kernel.org
6532 S:      Maintained
6533 F:      include/linux/pkt_cls.h
6534 F:      include/net/pkt_cls.h
6535 F:      net/sched/
6536
6537 TCP LOW PRIORITY MODULE
6538 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
6539 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
6540 W:      http://tcp-lp-mod.sourceforge.net/
6541 S:      Maintained
6542 F:      net/ipv4/tcp_lp.c
6543
6544 TEAM DRIVER
6545 M:      Jiri Pirko <jpirko@redhat.com>
6546 L:      netdev@vger.kernel.org
6547 S:      Supported
6548 F:      drivers/net/team/
6549 F:      include/linux/if_team.h
6550
6551 TEGRA SUPPORT
6552 M:      Colin Cross <ccross@android.com>
6553 M:      Olof Johansson <olof@lixom.net>
6554 M:      Stephen Warren <swarren@nvidia.com>
6555 L:      linux-tegra@vger.kernel.org
6556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/tegra.git
6557 S:      Supported
6558 F:      arch/arm/mach-tegra
6559
6560 TEHUTI ETHERNET DRIVER
6561 M:      Andy Gospodarek <andy@greyhouse.net>
6562 L:      netdev@vger.kernel.org
6563 S:      Supported
6564 F:      drivers/net/ethernet/tehuti/*
6565
6566 Telecom Clock Driver for MCPL0010
6567 M:      Mark Gross <mark.gross@intel.com>
6568 S:      Supported
6569 F:      drivers/char/tlclk.c
6570
6571 TENSILICA XTENSA PORT (xtensa)
6572 M:      Chris Zankel <chris@zankel.net>
6573 S:      Maintained
6574 F:      arch/xtensa/
6575
6576 THINKPAD ACPI EXTRAS DRIVER
6577 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
6578 L:      ibm-acpi-devel@lists.sourceforge.net
6579 L:      platform-driver-x86@vger.kernel.org
6580 W:      http://ibm-acpi.sourceforge.net
6581 W:      http://thinkwiki.org/wiki/Ibm-acpi
6582 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
6583 S:      Maintained
6584 F:      drivers/platform/x86/thinkpad_acpi.c
6585
6586 TI FLASH MEDIA INTERFACE DRIVER
6587 M:      Alex Dubov <oakad@yahoo.com>
6588 S:      Maintained
6589 F:      drivers/misc/tifm*
6590 F:      drivers/mmc/host/tifm_sd.c
6591 F:      include/linux/tifm.h
6592
6593 TI TWL4030 SERIES SOC CODEC DRIVER
6594 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6595 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6596 S:      Maintained
6597 F:      sound/soc/codecs/twl4030*
6598
6599 TIPC NETWORK LAYER
6600 M:      Jon Maloy <jon.maloy@ericsson.com>
6601 M:      Allan Stephens <allan.stephens@windriver.com>
6602 L:      netdev@vger.kernel.org (core kernel code)
6603 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
6604 W:      http://tipc.sourceforge.net/
6605 S:      Maintained
6606 F:      include/linux/tipc*.h
6607 F:      net/tipc/
6608
6609 TILE ARCHITECTURE
6610 M:      Chris Metcalf <cmetcalf@tilera.com>
6611 W:      http://www.tilera.com/scm/
6612 S:      Supported
6613 F:      arch/tile/
6614 F:      drivers/tty/hvc/hvc_tile.c
6615 F:      drivers/net/ethernet/tile/
6616 F:      drivers/edac/tile_edac.c
6617
6618 TLAN NETWORK DRIVER
6619 M:      Samuel Chessman <chessman@tux.org>
6620 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
6621 W:      http://sourceforge.net/projects/tlan/
6622 S:      Maintained
6623 F:      Documentation/networking/tlan.txt
6624 F:      drivers/net/ethernet/ti/tlan.*
6625
6626 TOMOYO SECURITY MODULE
6627 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
6628 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
6629 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6630 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
6631 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6632 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6633 W:      http://tomoyo.sourceforge.jp/
6634 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
6635 S:      Maintained
6636 F:      security/tomoyo/
6637
6638 TOPSTAR LAPTOP EXTRAS DRIVER
6639 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
6640 L:      platform-driver-x86@vger.kernel.org
6641 S:      Maintained
6642 F:      drivers/platform/x86/topstar-laptop.c
6643
6644 TOSHIBA ACPI EXTRAS DRIVER
6645 L:      platform-driver-x86@vger.kernel.org
6646 S:      Orphan
6647 F:      drivers/platform/x86/toshiba_acpi.c
6648
6649 TOSHIBA SMM DRIVER
6650 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
6651 L:      tlinux-users@tce.toshiba-dme.co.jp
6652 W:      http://www.buzzard.org.uk/toshiba/
6653 S:      Maintained
6654 F:      drivers/char/toshiba.c
6655 F:      include/linux/toshiba.h
6656
6657 TMIO MMC DRIVER
6658 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6659 M:      Ian Molton <ian@mnementh.co.uk>
6660 L:      linux-mmc@vger.kernel.org
6661 S:      Maintained
6662 F:      drivers/mmc/host/tmio_mmc*
6663 F:      drivers/mmc/host/sh_mobile_sdhi.c
6664 F:      include/linux/mmc/tmio.h
6665 F:      include/linux/mmc/sh_mobile_sdhi.h
6666
6667 TMPFS (SHMEM FILESYSTEM)
6668 M:      Hugh Dickins <hughd@google.com>
6669 L:      linux-mm@kvack.org
6670 S:      Maintained
6671 F:      include/linux/shmem_fs.h
6672 F:      mm/shmem.c
6673
6674 TPM DEVICE DRIVER
6675 M:      Debora Velarde <debora@linux.vnet.ibm.com>
6676 M:      Rajiv Andrade <srajiv@linux.vnet.ibm.com>
6677 W:      http://tpmdd.sourceforge.net
6678 M:      Marcel Selhorst <m.selhorst@sirrix.com>
6679 W:      http://www.sirrix.com
6680 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
6681 S:      Maintained
6682 F:      drivers/char/tpm/
6683
6684 TRACING
6685 M:      Steven Rostedt <rostedt@goodmis.org>
6686 M:      Frederic Weisbecker <fweisbec@gmail.com>
6687 M:      Ingo Molnar <mingo@redhat.com>
6688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core
6689 S:      Maintained
6690 F:      Documentation/trace/ftrace.txt
6691 F:      arch/*/*/*/ftrace.h
6692 F:      arch/*/kernel/ftrace.c
6693 F:      include/*/ftrace.h
6694 F:      include/linux/trace*.h
6695 F:      include/trace/
6696 F:      kernel/trace/
6697
6698 TRIVIAL PATCHES
6699 M:      Jiri Kosina <trivial@kernel.org>
6700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
6701 S:      Maintained
6702 K:      ^Subject:.*(?i)trivial
6703
6704 TTY LAYER
6705 M:      Greg Kroah-Hartman <gregkh@suse.de>
6706 S:      Maintained
6707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
6708 F:      drivers/tty/*
6709 F:      drivers/tty/serial/serial_core.c
6710 F:      include/linux/serial_core.h
6711 F:      include/linux/serial.h
6712 F:      include/linux/tty.h
6713
6714 TULIP NETWORK DRIVERS
6715 M:      Grant Grundler <grundler@parisc-linux.org>
6716 L:      netdev@vger.kernel.org
6717 S:      Maintained
6718 F:      drivers/net/ethernet/tulip/
6719
6720 TUN/TAP driver
6721 M:      Maxim Krasnyansky <maxk@qualcomm.com>
6722 L:      vtun@office.satix.net
6723 W:      http://vtun.sourceforge.net/tun
6724 S:      Maintained
6725 F:      Documentation/networking/tuntap.txt
6726 F:      arch/um/os-Linux/drivers/
6727
6728 TURBOCHANNEL SUBSYSTEM
6729 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6730 S:      Maintained
6731 F:      drivers/tc/
6732 F:      include/linux/tc.h
6733
6734 U14-34F SCSI DRIVER
6735 M:      Dario Ballabio <ballabio_dario@emc.com>
6736 L:      linux-scsi@vger.kernel.org
6737 S:      Maintained
6738 F:      drivers/scsi/u14-34f.c
6739
6740 UBI FILE SYSTEM (UBIFS)
6741 M:      Artem Bityutskiy <dedekind1@gmail.com>
6742 M:      Adrian Hunter <adrian.hunter@intel.com>
6743 L:      linux-mtd@lists.infradead.org
6744 T:      git git://git.infradead.org/ubifs-2.6.git
6745 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
6746 S:      Maintained
6747 F:      Documentation/filesystems/ubifs.txt
6748 F:      fs/ubifs/
6749
6750 UCLINUX (AND M68KNOMMU)
6751 M:      Greg Ungerer <gerg@uclinux.org>
6752 W:      http://www.uclinux.org/
6753 L:      uclinux-dev@uclinux.org  (subscribers-only)
6754 S:      Maintained
6755 F:      arch/m68k/*/*_no.*
6756 F:      arch/m68k/include/asm/*_no.*
6757
6758 UCLINUX FOR RENESAS H8/300 (H8300)
6759 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6760 W:      http://uclinux-h8.sourceforge.jp/
6761 S:      Supported
6762 F:      arch/h8300/
6763 F:      drivers/ide/ide-h8300.c
6764 F:      drivers/net/ethernet/8390/ne-h8300.c
6765
6766 UDF FILESYSTEM
6767 M:      Jan Kara <jack@suse.cz>
6768 S:      Maintained
6769 F:      Documentation/filesystems/udf.txt
6770 F:      fs/udf/
6771
6772 UFS FILESYSTEM
6773 M:      Evgeniy Dushistov <dushistov@mail.ru>
6774 S:      Maintained
6775 F:      Documentation/filesystems/ufs.txt
6776 F:      fs/ufs/
6777
6778 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
6779 L:      linux-usb@vger.kernel.org
6780 S:      Orphan
6781 F:      drivers/uwb/
6782 F:      include/linux/uwb.h
6783 F:      include/linux/uwb/
6784
6785 UNICORE32 ARCHITECTURE:
6786 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
6787 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
6788 S:      Maintained
6789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6790 F:      arch/unicore32/
6791
6792 UNIFDEF
6793 M:      Tony Finch <dot@dotat.at>
6794 W:      http://dotat.at/prog/unifdef
6795 S:      Maintained
6796 F:      scripts/unifdef.c
6797
6798 UNIFORM CDROM DRIVER
6799 M:      Jens Axboe <axboe@kernel.dk>
6800 W:      http://www.kernel.dk
6801 S:      Maintained
6802 F:      Documentation/cdrom/
6803 F:      drivers/cdrom/cdrom.c
6804 F:      include/linux/cdrom.h
6805
6806 UNSORTED BLOCK IMAGES (UBI)
6807 M:      Artem Bityutskiy <dedekind1@gmail.com>
6808 W:      http://www.linux-mtd.infradead.org/
6809 L:      linux-mtd@lists.infradead.org
6810 T:      git git://git.infradead.org/ubi-2.6.git
6811 S:      Maintained
6812 F:      drivers/mtd/ubi/
6813 F:      include/linux/mtd/ubi.h
6814 F:      include/mtd/ubi-user.h
6815
6816 USB ACM DRIVER
6817 M:      Oliver Neukum <oliver@neukum.name>
6818 L:      linux-usb@vger.kernel.org
6819 S:      Maintained
6820 F:      Documentation/usb/acm.txt
6821 F:      drivers/usb/class/cdc-acm.*
6822
6823 USB ATTACHED SCSI
6824 M:      Matthew Wilcox <willy@linux.intel.com>
6825 M:      Sarah Sharp <sarah.a.sharp@linux.intel.com>
6826 L:      linux-usb@vger.kernel.org
6827 L:      linux-scsi@vger.kernel.org
6828 S:      Supported
6829 F:      drivers/usb/storage/uas.c
6830
6831 USB BLOCK DRIVER (UB ub)
6832 M:      Pete Zaitcev <zaitcev@redhat.com>
6833 L:      linux-usb@vger.kernel.org
6834 S:      Supported
6835 F:      drivers/block/ub.c
6836
6837 USB CDC ETHERNET DRIVER
6838 M:      Oliver Neukum <oliver@neukum.name>
6839 L:      linux-usb@vger.kernel.org
6840 S:      Maintained
6841 F:      drivers/net/usb/cdc_*.c
6842 F:      include/linux/usb/cdc.h
6843
6844 USB CYPRESS C67X00 DRIVER
6845 M:      Peter Korsgaard <jacmet@sunsite.dk>
6846 L:      linux-usb@vger.kernel.org
6847 S:      Maintained
6848 F:      drivers/usb/c67x00/
6849
6850 USB DAVICOM DM9601 DRIVER
6851 M:      Peter Korsgaard <jacmet@sunsite.dk>
6852 L:      netdev@vger.kernel.org
6853 W:      http://www.linux-usb.org/usbnet
6854 S:      Maintained
6855 F:      drivers/net/usb/dm9601.c
6856
6857 USB DIAMOND RIO500 DRIVER
6858 M:      Cesar Miquel <miquel@df.uba.ar>
6859 L:      rio500-users@lists.sourceforge.net
6860 W:      http://rio500.sourceforge.net
6861 S:      Maintained
6862 F:      drivers/usb/misc/rio500*
6863
6864 USB EHCI DRIVER
6865 M:      Alan Stern <stern@rowland.harvard.edu>
6866 L:      linux-usb@vger.kernel.org
6867 S:      Maintained
6868 F:      Documentation/usb/ehci.txt
6869 F:      drivers/usb/host/ehci*
6870
6871 USB ET61X[12]51 DRIVER
6872 M:      Luca Risolia <luca.risolia@studio.unibo.it>
6873 L:      linux-usb@vger.kernel.org
6874 L:      linux-media@vger.kernel.org
6875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
6876 W:      http://www.linux-projects.org
6877 S:      Maintained
6878 F:      drivers/media/video/et61x251/
6879
6880 USB GADGET/PERIPHERAL SUBSYSTEM
6881 M:      Felipe Balbi <balbi@ti.com>
6882 L:      linux-usb@vger.kernel.org
6883 W:      http://www.linux-usb.org/gadget
6884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6885 S:      Maintained
6886 F:      drivers/usb/gadget/
6887 F:      include/linux/usb/gadget*
6888
6889 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
6890 M:      Jiri Kosina <jkosina@suse.cz>
6891 L:      linux-usb@vger.kernel.org
6892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6893 S:      Maintained
6894 F:      Documentation/hid/hiddev.txt
6895 F:      drivers/hid/usbhid/
6896
6897 USB/IP DRIVERS
6898 M:      Matt Mooney <mfm@muteddisk.com>
6899 L:      linux-usb@vger.kernel.org
6900 S:      Maintained
6901 F:      drivers/staging/usbip/
6902
6903 USB ISP116X DRIVER
6904 M:      Olav Kongas <ok@artecdesign.ee>
6905 L:      linux-usb@vger.kernel.org
6906 S:      Maintained
6907 F:      drivers/usb/host/isp116x*
6908 F:      include/linux/usb/isp116x.h
6909
6910 USB KAWASAKI LSI DRIVER
6911 M:      Oliver Neukum <oliver@neukum.name>
6912 L:      linux-usb@vger.kernel.org
6913 S:      Maintained
6914 F:      drivers/usb/serial/kl5kusb105.*
6915
6916 USB MASS STORAGE DRIVER
6917 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
6918 L:      linux-usb@vger.kernel.org
6919 L:      usb-storage@lists.one-eyed-alien.net
6920 S:      Maintained
6921 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
6922 F:      drivers/usb/storage/
6923
6924 USB MIDI DRIVER
6925 M:      Clemens Ladisch <clemens@ladisch.de>
6926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6927 T:      git git://git.alsa-project.org/alsa-kernel.git
6928 S:      Maintained
6929 F:      sound/usb/midi.*
6930
6931 USB OHCI DRIVER
6932 M:      Alan Stern <stern@rowland.harvard.edu>
6933 L:      linux-usb@vger.kernel.org
6934 S:      Maintained
6935 F:      Documentation/usb/ohci.txt
6936 F:      drivers/usb/host/ohci*
6937
6938 USB OPTION-CARD DRIVER
6939 M:      Matthias Urlichs <smurf@smurf.noris.de>
6940 L:      linux-usb@vger.kernel.org
6941 S:      Maintained
6942 F:      drivers/usb/serial/option.c
6943
6944 USB PEGASUS DRIVER
6945 M:      Petko Manolov <petkan@users.sourceforge.net>
6946 L:      linux-usb@vger.kernel.org
6947 L:      netdev@vger.kernel.org
6948 W:      http://pegasus2.sourceforge.net/
6949 S:      Maintained
6950 F:      drivers/net/usb/pegasus.*
6951
6952 USB PRINTER DRIVER (usblp)
6953 M:      Pete Zaitcev <zaitcev@redhat.com>
6954 L:      linux-usb@vger.kernel.org
6955 S:      Supported
6956 F:      drivers/usb/class/usblp.c
6957
6958 USB RTL8150 DRIVER
6959 M:      Petko Manolov <petkan@users.sourceforge.net>
6960 L:      linux-usb@vger.kernel.org
6961 L:      netdev@vger.kernel.org
6962 W:      http://pegasus2.sourceforge.net/
6963 S:      Maintained
6964 F:      drivers/net/usb/rtl8150.c
6965
6966 USB SERIAL BELKIN F5U103 DRIVER
6967 M:      William Greathouse <wgreathouse@smva.com>
6968 L:      linux-usb@vger.kernel.org
6969 S:      Maintained
6970 F:      drivers/usb/serial/belkin_sa.*
6971
6972 USB SERIAL CYPRESS M8 DRIVER
6973 M:      Lonnie Mendez <dignome@gmail.com>
6974 L:      linux-usb@vger.kernel.org
6975 S:      Maintained
6976 W:      http://geocities.com/i0xox0i
6977 W:      http://firstlight.net/cvs
6978 F:      drivers/usb/serial/cypress_m8.*
6979
6980 USB SERIAL CYBERJACK DRIVER
6981 M:      Matthias Bruestle and Harald Welte <support@reiner-sct.com>
6982 W:      http://www.reiner-sct.de/support/treiber_cyberjack.php
6983 S:      Maintained
6984 F:      drivers/usb/serial/cyberjack.c
6985
6986 USB SERIAL DIGI ACCELEPORT DRIVER
6987 M:      Peter Berger <pberger@brimson.com>
6988 M:      Al Borchers <alborchers@steinerpoint.com>
6989 L:      linux-usb@vger.kernel.org
6990 S:      Maintained
6991 F:      drivers/usb/serial/digi_acceleport.c
6992
6993 USB SERIAL DRIVER
6994 M:      Greg Kroah-Hartman <gregkh@suse.de>
6995 L:      linux-usb@vger.kernel.org
6996 S:      Supported
6997 F:      Documentation/usb/usb-serial.txt
6998 F:      drivers/usb/serial/generic.c
6999 F:      drivers/usb/serial/usb-serial.c
7000 F:      include/linux/usb/serial.h
7001
7002 USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
7003 M:      Gary Brubaker <xavyer@ix.netcom.com>
7004 L:      linux-usb@vger.kernel.org
7005 S:      Maintained
7006 F:      drivers/usb/serial/empeg.c
7007
7008 USB SERIAL KEYSPAN DRIVER
7009 M:      Greg Kroah-Hartman <greg@kroah.com>
7010 L:      linux-usb@vger.kernel.org
7011 W:      http://www.kroah.com/linux/
7012 S:      Maintained
7013 F:      drivers/usb/serial/*keyspan*
7014
7015 USB SERIAL WHITEHEAT DRIVER
7016 M:      Support Department <support@connecttech.com>
7017 L:      linux-usb@vger.kernel.org
7018 W:      http://www.connecttech.com
7019 S:      Supported
7020 F:      drivers/usb/serial/whiteheat*
7021
7022 USB SMSC95XX ETHERNET DRIVER
7023 M:      Steve Glendinning <steve.glendinning@smsc.com>
7024 L:      netdev@vger.kernel.org
7025 S:      Supported
7026 F:      drivers/net/usb/smsc95xx.*
7027
7028 USB SN9C1xx DRIVER
7029 M:      Luca Risolia <luca.risolia@studio.unibo.it>
7030 L:      linux-usb@vger.kernel.org
7031 L:      linux-media@vger.kernel.org
7032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
7033 W:      http://www.linux-projects.org
7034 S:      Maintained
7035 F:      Documentation/video4linux/sn9c102.txt
7036 F:      drivers/media/video/sn9c102/
7037
7038 USB SUBSYSTEM
7039 M:      Greg Kroah-Hartman <gregkh@suse.de>
7040 L:      linux-usb@vger.kernel.org
7041 W:      http://www.linux-usb.org
7042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
7043 S:      Supported
7044 F:      Documentation/usb/
7045 F:      drivers/net/usb/
7046 F:      drivers/usb/
7047 F:      include/linux/usb.h
7048 F:      include/linux/usb/
7049
7050 USB UHCI DRIVER
7051 M:      Alan Stern <stern@rowland.harvard.edu>
7052 L:      linux-usb@vger.kernel.org
7053 S:      Maintained
7054 F:      drivers/usb/host/uhci*
7055
7056 USB "USBNET" DRIVER FRAMEWORK
7057 M:      Oliver Neukum <oneukum@suse.de>
7058 L:      netdev@vger.kernel.org
7059 W:      http://www.linux-usb.org/usbnet
7060 S:      Maintained
7061 F:      drivers/net/usb/usbnet.c
7062 F:      include/linux/usb/usbnet.h
7063
7064 USB VIDEO CLASS
7065 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7066 L:      linux-uvc-devel@lists.berlios.de (subscribers-only)
7067 L:      linux-media@vger.kernel.org
7068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
7069 W:      http://www.ideasonboard.org/uvc/
7070 S:      Maintained
7071 F:      drivers/media/video/uvc/
7072
7073 USB W996[87]CF DRIVER
7074 M:      Luca Risolia <luca.risolia@studio.unibo.it>
7075 L:      linux-usb@vger.kernel.org
7076 L:      linux-media@vger.kernel.org
7077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
7078 W:      http://www.linux-projects.org
7079 S:      Maintained
7080 F:      Documentation/video4linux/w9968cf.txt
7081 F:      drivers/media/video/w996*
7082
7083 USB WIRELESS RNDIS DRIVER (rndis_wlan)
7084 M:      Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
7085 L:      linux-wireless@vger.kernel.org
7086 S:      Maintained
7087 F:      drivers/net/wireless/rndis_wlan.c
7088
7089 USB XHCI DRIVER
7090 M:      Sarah Sharp <sarah.a.sharp@linux.intel.com>
7091 L:      linux-usb@vger.kernel.org
7092 S:      Supported
7093 F:      drivers/usb/host/xhci*
7094 F:      drivers/usb/host/pci-quirks*
7095
7096 USB ZD1201 DRIVER
7097 L:      linux-wireless@vger.kernel.org
7098 W:      http://linux-lc100020.sourceforge.net
7099 S:      Orphan
7100 F:      drivers/net/wireless/zd1201.*
7101
7102 USB ZR364XX DRIVER
7103 M:      Antoine Jacquet <royale@zerezo.com>
7104 L:      linux-usb@vger.kernel.org
7105 L:      linux-media@vger.kernel.org
7106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
7107 W:      http://royale.zerezo.com/zr364xx/
7108 S:      Maintained
7109 F:      Documentation/video4linux/zr364xx.txt
7110 F:      drivers/media/video/zr364xx.c
7111
7112 USER-MODE LINUX (UML)
7113 M:      Jeff Dike <jdike@addtoit.com>
7114 M:      Richard Weinberger <richard@nod.at>
7115 L:      user-mode-linux-devel@lists.sourceforge.net
7116 L:      user-mode-linux-user@lists.sourceforge.net
7117 W:      http://user-mode-linux.sourceforge.net
7118 S:      Maintained
7119 F:      Documentation/virtual/uml/
7120 F:      arch/um/
7121 F:      fs/hostfs/
7122 F:      fs/hppfs/
7123
7124 USERSPACE I/O (UIO)
7125 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7126 M:      Greg Kroah-Hartman <gregkh@suse.de>
7127 S:      Maintained
7128 F:      Documentation/DocBook/uio-howto.tmpl
7129 F:      drivers/uio/
7130 F:      include/linux/uio*.h
7131
7132 UTIL-LINUX-NG PACKAGE
7133 M:      Karel Zak <kzak@redhat.com>
7134 L:      util-linux-ng@vger.kernel.org
7135 W:      http://kernel.org/~kzak/util-linux-ng/
7136 T:      git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
7137 S:      Maintained
7138
7139 UVESAFB DRIVER
7140 M:      Michal Januszewski <spock@gentoo.org>
7141 L:      linux-fbdev@vger.kernel.org
7142 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
7143 S:      Maintained
7144 F:      Documentation/fb/uvesafb.txt
7145 F:      drivers/video/uvesafb.*
7146
7147 VFAT/FAT/MSDOS FILESYSTEM
7148 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
7149 S:      Maintained
7150 F:      Documentation/filesystems/vfat.txt
7151 F:      fs/fat/
7152
7153 VIDEOBUF2 FRAMEWORK
7154 M:      Pawel Osciak <pawel@osciak.com>
7155 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7156 M:      Kyungmin Park <kyungmin.park@samsung.com>
7157 L:      linux-media@vger.kernel.org
7158 S:      Maintained
7159 F:      drivers/media/video/videobuf2-*
7160 F:      include/media/videobuf2-*
7161
7162 VIRTIO CONSOLE DRIVER
7163 M:      Amit Shah <amit.shah@redhat.com>
7164 L:      virtualization@lists.linux-foundation.org
7165 S:      Maintained
7166 F:      drivers/char/virtio_console.c
7167 F:      include/linux/virtio_console.h
7168
7169 VIRTIO CORE, NET AND BLOCK DRIVERS
7170 M:      Rusty Russell <rusty@rustcorp.com.au>
7171 M:      "Michael S. Tsirkin" <mst@redhat.com>
7172 L:      virtualization@lists.linux-foundation.org
7173 S:      Maintained
7174 F:      drivers/virtio/
7175 F:      drivers/net/virtio_net.c
7176 F:      drivers/block/virtio_blk.c
7177 F:      include/linux/virtio_*.h
7178
7179 VIRTIO HOST (VHOST)
7180 M:      "Michael S. Tsirkin" <mst@redhat.com>
7181 L:      kvm@vger.kernel.org
7182 L:      virtualization@lists.linux-foundation.org
7183 L:      netdev@vger.kernel.org
7184 S:      Maintained
7185 F:      drivers/vhost/
7186 F:      include/linux/vhost.h
7187
7188 VIA RHINE NETWORK DRIVER
7189 M:      Roger Luethi <rl@hellgate.ch>
7190 S:      Maintained
7191 F:      drivers/net/ethernet/via/via-rhine.c
7192
7193 VIAPRO SMBUS DRIVER
7194 M:      Jean Delvare <khali@linux-fr.org>
7195 L:      linux-i2c@vger.kernel.org
7196 S:      Maintained
7197 F:      Documentation/i2c/busses/i2c-viapro
7198 F:      drivers/i2c/busses/i2c-viapro.c
7199
7200 VIA SD/MMC CARD CONTROLLER DRIVER
7201 M:      Bruce Chang <brucechang@via.com.tw>
7202 M:      Harald Welte <HaraldWelte@viatech.com>
7203 S:      Maintained
7204 F:      drivers/mmc/host/via-sdmmc.c
7205
7206 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
7207 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
7208 L:      linux-fbdev@vger.kernel.org
7209 S:      Maintained
7210 F:      include/linux/via-core.h
7211 F:      include/linux/via-gpio.h
7212 F:      include/linux/via_i2c.h
7213 F:      drivers/video/via/
7214
7215 VIA VELOCITY NETWORK DRIVER
7216 M:      Francois Romieu <romieu@fr.zoreil.com>
7217 L:      netdev@vger.kernel.org
7218 S:      Maintained
7219 F:      drivers/net/ethernet/via/via-velocity.*
7220
7221 VLAN (802.1Q)
7222 M:      Patrick McHardy <kaber@trash.net>
7223 L:      netdev@vger.kernel.org
7224 S:      Maintained
7225 F:      drivers/net/macvlan.c
7226 F:      include/linux/if_*vlan.h
7227 F:      net/8021q/
7228
7229 VLYNQ BUS
7230 M:      Florian Fainelli <florian@openwrt.org>
7231 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
7232 S:      Maintained
7233 F:      drivers/vlynq/vlynq.c
7234 F:      include/linux/vlynq.h
7235
7236 VMWARE VMXNET3 ETHERNET DRIVER
7237 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
7238 M:      "VMware, Inc." <pv-drivers@vmware.com>
7239 L:      netdev@vger.kernel.org
7240 S:      Maintained
7241 F:      drivers/net/vmxnet3/
7242
7243 VMware PVSCSI driver
7244 M:      Alok Kataria <akataria@vmware.com>
7245 M:      VMware PV-Drivers <pv-drivers@vmware.com>
7246 L:      linux-scsi@vger.kernel.org
7247 S:      Maintained
7248 F:      drivers/scsi/vmw_pvscsi.c
7249 F:      drivers/scsi/vmw_pvscsi.h
7250
7251 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
7252 M:      Liam Girdwood <lrg@ti.com>
7253 M:      Mark Brown <broonie@opensource.wolfsonmicro.com>
7254 W:      http://opensource.wolfsonmicro.com/node/15
7255 W:      http://www.slimlogic.co.uk/?p=48
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
7257 S:      Supported
7258 F:      drivers/regulator/
7259 F:      include/linux/regulator/
7260
7261 VT1211 HARDWARE MONITOR DRIVER
7262 M:      Juerg Haefliger <juergh@gmail.com>
7263 L:      lm-sensors@lm-sensors.org
7264 S:      Maintained
7265 F:      Documentation/hwmon/vt1211
7266 F:      drivers/hwmon/vt1211.c
7267
7268 VT8231 HARDWARE MONITOR DRIVER
7269 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
7270 L:      lm-sensors@lm-sensors.org
7271 S:      Maintained
7272 F:      drivers/hwmon/vt8231.c
7273
7274 VUB300 USB to SDIO/SD/MMC bridge chip
7275 M:      Tony Olech <tony.olech@elandigitalsystems.com>
7276 L:      linux-mmc@vger.kernel.org
7277 L:      linux-usb@vger.kernel.org
7278 S:      Supported
7279 F:      drivers/mmc/host/vub300.c
7280
7281 W1 DALLAS'S 1-WIRE BUS
7282 M:      Evgeniy Polyakov <zbr@ioremap.net>
7283 S:      Maintained
7284 F:      Documentation/w1/
7285 F:      drivers/w1/
7286
7287 W83791D HARDWARE MONITORING DRIVER
7288 M:      Marc Hulsman <m.hulsman@tudelft.nl>
7289 L:      lm-sensors@lm-sensors.org
7290 S:      Maintained
7291 F:      Documentation/hwmon/w83791d
7292 F:      drivers/hwmon/w83791d.c
7293
7294 W83793 HARDWARE MONITORING DRIVER
7295 M:      Rudolf Marek <r.marek@assembler.cz>
7296 L:      lm-sensors@lm-sensors.org
7297 S:      Maintained
7298 F:      Documentation/hwmon/w83793
7299 F:      drivers/hwmon/w83793.c
7300
7301 W83795 HARDWARE MONITORING DRIVER
7302 M:      Jean Delvare <khali@linux-fr.org>
7303 L:      lm-sensors@lm-sensors.org
7304 S:      Maintained
7305 F:      drivers/hwmon/w83795.c
7306
7307 W83L51xD SD/MMC CARD INTERFACE DRIVER
7308 M:      Pierre Ossman <pierre@ossman.eu>
7309 S:      Maintained
7310 F:      drivers/mmc/host/wbsd.*
7311
7312 WATCHDOG DEVICE DRIVERS
7313 M:      Wim Van Sebroeck <wim@iguana.be>
7314 L:      linux-watchdog@vger.kernel.org
7315 W:      http://www.linux-watchdog.org/
7316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
7317 S:      Maintained
7318 F:      Documentation/watchdog/
7319 F:      drivers/watchdog/
7320 F:      include/linux/watchdog.h
7321
7322 WD7000 SCSI DRIVER
7323 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
7324 L:      linux-scsi@vger.kernel.org
7325 S:      Maintained
7326 F:      drivers/scsi/wd7000.c
7327
7328 WIIMOTE HID DRIVER
7329 M:      David Herrmann <dh.herrmann@googlemail.com>
7330 L:      linux-input@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/hid/hid-wiimote*
7333
7334 WINBOND CIR DRIVER
7335 M:      David Härdeman <david@hardeman.nu>
7336 S:      Maintained
7337 F:      drivers/media/rc/winbond-cir.c
7338
7339 WIMAX STACK
7340 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7341 M:      linux-wimax@intel.com
7342 L:      wimax@linuxwimax.org
7343 S:      Supported
7344 W:      http://linuxwimax.org
7345 F:      Documentation/wimax/README.wimax
7346 F:      include/linux/wimax.h
7347 F:      include/linux/wimax/debug.h
7348 F:      include/net/wimax.h
7349 F:      net/wimax/
7350
7351 WISTRON LAPTOP BUTTON DRIVER
7352 M:      Miloslav Trmac <mitr@volny.cz>
7353 S:      Maintained
7354 F:      drivers/input/misc/wistron_btns.c
7355
7356 WL1251 WIRELESS DRIVER
7357 M:      Luciano Coelho <coelho@ti.com>
7358 L:      linux-wireless@vger.kernel.org
7359 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
7360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7361 S:      Maintained
7362 F:      drivers/net/wireless/wl1251/*
7363
7364 WL1271 WIRELESS DRIVER
7365 M:      Luciano Coelho <coelho@ti.com>
7366 L:      linux-wireless@vger.kernel.org
7367 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
7368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7369 S:      Maintained
7370 F:      drivers/net/wireless/wl12xx/
7371 F:      include/linux/wl12xx.h
7372
7373 WL3501 WIRELESS PCMCIA CARD DRIVER
7374 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
7375 L:      linux-wireless@vger.kernel.org
7376 W:      http://oops.ghostprotocols.net:81/blog
7377 S:      Maintained
7378 F:      drivers/net/wireless/wl3501*
7379
7380 WM97XX TOUCHSCREEN DRIVERS
7381 M:      Mark Brown <broonie@opensource.wolfsonmicro.com>
7382 M:      Liam Girdwood <lrg@slimlogic.co.uk>
7383 L:      linux-input@vger.kernel.org
7384 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
7385 W:      http://opensource.wolfsonmicro.com/node/7
7386 S:      Supported
7387 F:      drivers/input/touchscreen/*wm97*
7388 F:      include/linux/wm97xx.h
7389
7390 WOLFSON MICROELECTRONICS DRIVERS
7391 M:      Mark Brown <broonie@opensource.wolfsonmicro.com>
7392 M:      Ian Lartey <ian@opensource.wolfsonmicro.com>
7393 M:      Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
7394 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
7395 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
7396 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
7397 S:      Supported
7398 F:      Documentation/hwmon/wm83??
7399 F:      arch/arm/mach-s3c64xx/mach-crag6410*
7400 F:      drivers/leds/leds-wm83*.c
7401 F:      drivers/input/misc/wm831x-on.c
7402 F:      drivers/input/touchscreen/wm831x-ts.c
7403 F:      drivers/input/touchscreen/wm97*.c
7404 F:      drivers/mfd/wm8*.c
7405 F:      drivers/power/wm83*.c
7406 F:      drivers/rtc/rtc-wm83*.c
7407 F:      drivers/regulator/wm8*.c
7408 F:      drivers/video/backlight/wm83*_bl.c
7409 F:      drivers/watchdog/wm83*_wdt.c
7410 F:      include/linux/mfd/wm831x/
7411 F:      include/linux/mfd/wm8350/
7412 F:      include/linux/mfd/wm8400*
7413 F:      include/linux/wm97xx.h
7414 F:      include/sound/wm????.h
7415 F:      sound/soc/codecs/wm*
7416
7417 WORKQUEUE
7418 M:      Tejun Heo <tj@kernel.org>
7419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
7420 S:      Maintained
7421 F:      include/linux/workqueue.h
7422 F:      kernel/workqueue.c
7423 F:      Documentation/workqueue.txt
7424
7425 X.25 NETWORK LAYER
7426 M:      Andrew Hendry <andrew.hendry@gmail.com>
7427 L:      linux-x25@vger.kernel.org
7428 S:      Odd Fixes
7429 F:      Documentation/networking/x25*
7430 F:      include/net/x25*
7431 F:      net/x25/
7432
7433 X86 ARCHITECTURE (32-BIT AND 64-BIT)
7434 M:      Thomas Gleixner <tglx@linutronix.de>
7435 M:      Ingo Molnar <mingo@redhat.com>
7436 M:      "H. Peter Anvin" <hpa@zytor.com>
7437 M:      x86@kernel.org
7438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
7439 S:      Maintained
7440 F:      Documentation/x86/
7441 F:      arch/x86/
7442
7443 X86 PLATFORM DRIVERS
7444 M:      Matthew Garrett <mjg@redhat.com>
7445 L:      platform-driver-x86@vger.kernel.org
7446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
7447 S:      Maintained
7448 F:      drivers/platform/x86
7449
7450 X86 MCE INFRASTRUCTURE
7451 M:      Tony Luck <tony.luck@intel.com>
7452 M:      Borislav Petkov <bp@amd64.org>
7453 L:      linux-edac@vger.kernel.org
7454 S:      Maintained
7455 F:      arch/x86/kernel/cpu/mcheck/*
7456
7457 XEN HYPERVISOR INTERFACE
7458 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7459 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7460 L:      xen-devel@lists.xensource.com (moderated for non-subscribers)
7461 L:      virtualization@lists.linux-foundation.org
7462 S:      Supported
7463 F:      arch/x86/xen/
7464 F:      drivers/*/xen-*front.c
7465 F:      drivers/xen/
7466 F:      arch/x86/include/asm/xen/
7467 F:      include/xen/
7468
7469 XEN NETWORK BACKEND DRIVER
7470 M:      Ian Campbell <ian.campbell@citrix.com>
7471 L:      xen-devel@lists.xensource.com (moderated for non-subscribers)
7472 L:      netdev@vger.kernel.org
7473 S:      Supported
7474 F:      drivers/net/xen-netback/*
7475
7476 XEN PCI SUBSYSTEM
7477 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7478 L:      xen-devel@lists.xensource.com (moderated for non-subscribers)
7479 S:      Supported
7480 F:      arch/x86/pci/*xen*
7481 F:      drivers/pci/*xen*
7482
7483 XEN SWIOTLB SUBSYSTEM
7484 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7485 L:      xen-devel@lists.xensource.com (moderated for non-subscribers)
7486 S:      Supported
7487 F:      arch/x86/xen/*swiotlb*
7488 F:      drivers/xen/*swiotlb*
7489
7490 XFS FILESYSTEM
7491 P:      Silicon Graphics Inc
7492 M:      Ben Myers <bpm@sgi.com>
7493 M:      Alex Elder <elder@kernel.org>
7494 M:      xfs-masters@oss.sgi.com
7495 L:      xfs@oss.sgi.com
7496 W:      http://oss.sgi.com/projects/xfs
7497 T:      git git://oss.sgi.com/xfs/xfs.git
7498 S:      Supported
7499 F:      Documentation/filesystems/xfs.txt
7500 F:      fs/xfs/
7501
7502 XILINX SYSTEMACE DRIVER
7503 M:      Grant Likely <grant.likely@secretlab.ca>
7504 W:      http://www.secretlab.ca/
7505 S:      Maintained
7506 F:      drivers/block/xsysace.c
7507
7508 XILINX UARTLITE SERIAL DRIVER
7509 M:      Peter Korsgaard <jacmet@sunsite.dk>
7510 L:      linux-serial@vger.kernel.org
7511 S:      Maintained
7512 F:      drivers/tty/serial/uartlite.c
7513
7514 YAM DRIVER FOR AX.25
7515 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
7516 L:      linux-hams@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/net/hamradio/yam*
7519 F:      include/linux/yam.h
7520
7521 YEALINK PHONE DRIVER
7522 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
7523 L:      usbb2k-api-dev@nongnu.org
7524 S:      Maintained
7525 F:      Documentation/input/yealink.txt
7526 F:      drivers/input/misc/yealink.*
7527
7528 Z8530 DRIVER FOR AX.25
7529 M:      Joerg Reuter <jreuter@yaina.de>
7530 W:      http://yaina.de/jreuter/
7531 W:      http://www.qsl.net/dl1bke/
7532 L:      linux-hams@vger.kernel.org
7533 S:      Maintained
7534 F:      Documentation/networking/z8530drv.txt
7535 F:      drivers/net/hamradio/*scc.c
7536 F:      drivers/net/hamradio/z8530.h
7537
7538 ZD1211RW WIRELESS DRIVER
7539 M:      Daniel Drake <dsd@gentoo.org>
7540 M:      Ulrich Kunitz <kune@deine-taler.de>
7541 W:      http://zd1211.ath.cx/wiki/DriverRewrite
7542 L:      linux-wireless@vger.kernel.org
7543 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
7544 S:      Maintained
7545 F:      drivers/net/wireless/zd1211rw/
7546
7547 ZR36067 VIDEO FOR LINUX DRIVER
7548 L:      mjpeg-users@lists.sourceforge.net
7549 L:      linux-media@vger.kernel.org
7550 W:      http://mjpeg.sourceforge.net/driver-zoran/
7551 T:      Mercurial http://linuxtv.org/hg/v4l-dvb
7552 S:      Odd Fixes
7553 F:      drivers/media/video/zoran/
7554
7555 ZS DECSTATION Z85C30 SERIAL DRIVER
7556 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
7557 S:      Maintained
7558 F:      drivers/tty/serial/zs.*
7559
7560 THE REST
7561 M:      Linus Torvalds <torvalds@linux-foundation.org>
7562 L:      linux-kernel@vger.kernel.org
7563 Q:      http://patchwork.kernel.org/project/LKML/list/
7564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
7565 S:      Buried alive in reporters
7566 F:      *
7567 F:      */