Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 | List of maintainers and how to submit kernel changes Please try to follow the guidelines below. This will make things easier on the maintainers. Not all of these guidelines matter for every trivial patch so apply some common sense. 1. Always _test_ your changes, however small, on at least 4 or 5 people, preferably many more. 2. Try to release a few ALPHA test versions to the net. Announce them onto the kernel channel and await results. This is especially important for device drivers, because often that's the only way you will find things like the fact version 3 firmware needs a magic fix you didn't know about, or some clown changed the chips on a board and not its name. (Don't laugh! Look at the SMC etherpower for that.) 3. Make sure your changes compile correctly in multiple configurations. In particular check that changes work both as a module and built into the kernel. 4. When you are happy with a change make it generally available for testing and await feedback. 5. Make a patch available to the relevant maintainer in the list. Use 'diff -u' to make the patch easy to merge. Be prepared to get your changes sent back with seemingly silly requests about formatting and variable names. These aren't as silly as they seem. One job the maintainers (and especially Linus) do is to keep things looking the same. Sometimes this means that the clever hack in your driver to get around a problem actually needs to become a generalized kernel feature ready for next time. See Documentation/CodingStyle for guidance here. PLEASE try to include any credit lines you want added with the patch. It avoids people being missed off by mistake and makes it easier to know who wants adding and who doesn't. PLEASE document known bugs. If it doesn't work for everything or does something very odd once a month document it. 6. Make sure you have the right to send any changes you make. If you do changes at work you may find your employer owns the patch not you. 7. Happy hacking. ----------------------------------- Maintainers List (try to look for most precise areas first) Note: For the hard of thinking, this list is meant to remain in alphabetical order. If you could add yourselves to it in alphabetical order that would be so much easier [Ed] P: Person M: Mail patches to L: Mailing list that is relevant to this area W: Web-page with status/info S: Status, one of the following: Supported: Someone is actually paid to look after this. Maintained: Someone actually looks after it. Odd Fixes: It has a maintainer but they don't have time to do much other than throw the odd patch in. See below.. Orphan: No current maintainer [but maybe you could take the role as you write your new code]. Obsolete: Old code. Something tagged obsolete generally means it has been replaced by a better system and you should be using that. 3C501 NETWORK DRIVER P: Alan Cox M: alan@the.3c501.cabal.tm L: linux-net@vger.kernel.org S: Maintained for 2.2 only 3C505 NETWORK DRIVER P: Philip Blundell M: Philip.Blundell@pobox.com L: linux-net@vger.kernel.org S: Maintained 6PACK NETWORK DRIVER FOR AX.25 P: Andreas Koensgen M: ajk@iehk.rwth-aachen.de L: linux-hams@vger.kernel.org S: Maintained 8139TOO ETHERNET DRIVER P: Jeff Garzik M: jgarzik@mandrakesoft.com W: http://sourceforge.net/projects/gkernel/ S: Maintained 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER P: Theodore Ts'o M: tytso@mit.edu L: linux-serial@vger.kernel.org W: http://serial.sourceforge.net S: Maintained 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] P: Paul Gortmaker M: p_gortmaker@yahoo.com L: linux-net@vger.kernel.org S: Maintained ACPI P: Andy Grover M: andrew.grover@intel.com L: acpi@phobos.fs.tum.de W: http://phobos.fs.tum.de/acpi/index.html S: Maintained AD1816 SOUND DRIVER P: Thorsten Knabe M: Thorsten Knabe <tek@rbg.informatik.tu-darmstadt.de> M: Thorsten Knabe <tek01@hrzpub.tu-darmstadt.de> W: http://www.student.informatik.tu-darmstadt.de/~tek/projects/linux.html W: http://www.tu-darmstadt.de/~tek01/projects/linux.html S: Maintained ADVANSYS SCSI DRIVER P: Bob Frey M: linux@advansys.com W: http://www.advansys.com/linux.html L: linux-scsi@vger.kernel.org S: Maintained AEDSP16 DRIVER P: Riccardo Facchetti M: fizban@tin.it S: Maintained AHA152X SCSI DRIVER P: Juergen E. Fischer M: Juergen Fischer <fischer@norbit.de> L: linux-scsi@vger.kernel.org S: Maintained APM DRIVER P: Stephen Rothwell M: apm@linuxcare.com.au L: linux-laptop@vger.kernel.org W: http://linuxcare.com.au/apm/ S: Supported APPLETALK NETWORK LAYER P: Jay Schulist M: jschlst@turbolinux.com L: linux-atalk@netspace.org S: Maintained ARM MFM AND FLOPPY DRIVERS P: Dave Gilbert M: linux@treblig.org S: Maintained ARM PORT P: Russell King M: linux@arm.linux.org.uk L: linux-arm-kernel@lists.arm.linux.org.uk W: http://www.arm.linux.org.uk/ S: Maintained ARPD SUPPORT P: Jonathan Layes M: layes@loran.com L: linux-net@vger.kernel.org S: Maintained AX.25 NETWORK LAYER P: Matthias Welwarsky M: dg2fef@afthd.tu-darmstadt.de L: linux-hams@vger.kernel.org S: Maintained BAYCOM/HDLCDRV/SOUNDMODEM DRIVERS FOR AX.25 P: Thomas Sailer M: sailer@ife.ee.ethz.ch L: linux-hams@vger.kernel.org W: http://www.ife.ee.ethz.ch/~sailer/ham/ham.html S: Maintained BERKSHIRE PRODUCTS PC WATCHDOG DRIVER P: Kenji Hollis M: kenji@bitgate.com W: http://ftp.bitgate.com/pcwd/ S: Maintained BFS FILE SYSTEM P: Tigran A. Aivazian M: tigran@veritas.com L: linux-kernel@vger.kernel.org W: http://www.ocston.org/~tigran/patches/bfs S: Maintained BTTV VIDEO4LINUX DRIVER P: Gerd Knorr M: kraxel@goldbach.in-berlin.de L: video4linux-list@redhat.com W: http://me.in-berlin.de/~kraxel/bttv.html S: Maintained BUSLOGIC SCSI DRIVER P: Leonard N. Zubkoff M: Leonard N. Zubkoff <lnz@dandelion.com> L: linux-scsi@vger.kernel.org W: http://www.dandelion.com/Linux/ S: Maintained CIRRUS LOGIC GENERIC FBDEV DRIVER P: Jeff Garzik M: jgarzik@mandrakesoft.com L: linux-fbdev@vuser.vu.union.edu S: Odd Fixes CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER P: Cirrus Logic Corporation (kernel 2.2 driver) M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> P: Nils Faerber (port to kernel 2.4) M: Nils Faerber <nils@kernelconcepts.de> S: Maintained COMPAQ FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA P: Amy Vanzant-Hodge M: Amy Vanzant-Hodge (fibrechannel@compaq.com) L: compaqandlinux@cpqlin.van-dijk.net W: ftp.compaq.com/pub/products/drivers/linux S: Supported COMPAQ SMART2 RAID DRIVER P: Charles White M: Charles White <arrays@compaq.com> L: compaqandlinux@cpqlin.van-dijk.net W: ftp.compaq.com/pub/products/drivers/linux S: Supported COMPAQ SMART CISS RAID DRIVER P: Charles White M: Charles White <arrays@compaq.com> L: compaqandlinux@cpqlin.van-dijk.net W: ftp.compaq.com/pub/products/drivers/linux S: Supported COMPUTONE INTELLIPORT MULTIPORT CARD P: Doug McNash P: Michael H. Warfield M: Doug McNash <dougm@computone.com> M: Michael H. Warfield <mhw@wittsend.com> W: http://www.computone.com/ W: http://www.wittsend.com/computone.html L: linux-computone@lazuli.wittsend.com S: Supported COMX/MULTIGATE SYNC SERIAL DRIVERS P: Gergely Madarasz M: Gergely Madarasz <gorgo@itc.hu> S: Supported CONFIGURE, MENUCONFIG, XCONFIG P: Michael Elizabeth Chastain M: mec@shout.net L: linux-kbuild@torque.net W: http://www.kernel.org/pub/linux/kernel/projects/kbuild/ S: Maintained CONFIGURE.HELP P: Axel Boldt M: axel@uni-paderborn.de S: Maintained COSA/SRP SYNC SERIAL DRIVER P: Jan "Yenya" Kasprzak M: kas@fi.muni.cz W: http://www.fi.muni.cz/~kas/cosa/ S: Maintained CPUID/MSR DRIVER P: H. Peter Anvin M: hpa@zytor.com S: Maintained CREDITS FILE P: John A. Martin M: jam@acm.org S: Maintained CYBERPRO FB DRIVER P: Russell King M: linux@arm.linux.org.uk W: http://www.arm.linux.org.uk/ S: Maintained CYCLADES 2X SYNC CARD DRIVER P: Arnaldo Carvalho de Melo M: acme@conectiva.com.br W: http://www.conectiva.com.br/~acme L: cycsyn-devel@bazar.conectiva.com.br S: Maintained CYCLADES ASYNC MUX DRIVER P: Ivan Passos M: ivan@cyclades.com W: http://www.cyclades.com/ S: Supported DAMA SLAVE for AX.25 P: Joerg Reuter M: jreuter@yaina.de W: http://yaina.de/jreuter/ W: http://www.qsl.net/dl1bke/ L: linux-hams@vger.kernel.org S: Maintained DC390/AM53C974 SCSI driver P: Kurt Garloff M: garloff@suse.de W: http://www.garloff.de/kurt/linux/dc390/ S: Maintained DECnet NETWORK LAYER P: Steven Whitehouse M: SteveW@ACM.org W: http://www.sucs.swan.ac.uk/~rohan/DECnet/index.html L: linux-decnet-user@lists.sourceforge.net S: Maintained DEVICE NUMBER REGISTRY P: H. Peter Anvin M: hpa@zytor.com L: linux-kernel@vger.kernel.org S: Maintained DEVICE FILESYSTEM P: Richard Gooch M: rgooch@atnf.csiro.au L: linux-kernel@vger.kernel.org S: Maintained DIGI INTL. EPCA DRIVER P: Chad Schwartz M: support@dgii.com M: chads@dgii.com L: digilnux@dgii.com S: Maintained DIGI RIGHTSWITCH NETWORK DRIVER P: Rick Richardson M: rick@remotepoint.com L: linux-net@vger.kernel.org W: http://www.dgii.com/linux/ S: Maintained DIGIBOARD PC/XE AND PC/XI DRIVER P: Christoph Lameter M: christoph@lameter.com W: http://www.dgii.com/linux,http://lameter.com/digi L: digilnux@dgii.com S: Maintained DIRECTORY NOTIFICATION P: Stephen Rothwell M: sfr@linuxcare.com.au L: linux-kernel@vger.kernel.org S: Supported DISK GEOMETRY AND PARTITION HANDLING P: Andries Brouwer M: aeb@veritas.com W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html S: Maintained DISKQUOTA: P: Marco van Wieringen M: mvw@planets.elm.net L: linux-kernel@vger.kernel.org S: Maintained DOUBLETALK DRIVER P: James R. Van Zandt M: jrv@vanzandt.mv.com L: blinux-list@redhat.com S: Maintained DRM DRIVERS P: Rik Faith M: faith@valinux.com L: dri-devel@lists.sourceforge.net S: Supported EATA-DMA SCSI DRIVER P: Michael Neuffer M: mike@i-Connect.Net L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org S: Maintained EATA ISA/EISA/PCI SCSI DRIVER P: Dario Ballabio M: ballabio_dario@emc.com L: linux-scsi@vger.kernel.org S: Maintained EATA-PIO SCSI DRIVER P: Michael Neuffer M: mike@i-Connect.Net L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org S: Maintained EEPRO100 NETWORK DRIVER P: Andrey V. Savochkin M: saw@saw.sw.com.sg S: Maintained EMU10K1 SOUND DRIVER P: Rui Sousa M: rsousa@grad.physics.sunysb.edu L: emu10k1-devel@opensource.creative.com W: http://opensource.creative.com/ S: Maintained ETHEREXPRESS-16 NETWORK DRIVER P: Philip Blundell M: Philip.Blundell@pobox.com L: linux-net@vger.kernel.org S: Maintained ETHERNET BRIDGE P: Lennert Buytenhek M: buytenh@gnu.org L: bridge@math.leidenuniv.nl W: http://www.math.leidenuniv.nl/~buytenh/bridge S: Maintained ETHERTEAM 16I DRIVER P: Mika Kuoppala M: miku@iki.fi S: Maintained EXT2 FILE SYSTEM P: Remy Card M: Remy.Card@linux.org L: linux-kernel@vger.kernel.org S: Maintained FILE LOCKING (flock() and fcntl()/lockf()) P: Matthew Wilcox M: matthew@wil.cx L: linux-fsdevel@vger.kernel.org S: Maintained FPU EMULATOR P: Bill Metzenthen M: billm@suburbia.net W: http://suburbia.net/~billm/floating-point/emulator/ S: Maintained FRAME RELAY DLCI/FRAD (Sangoma drivers too) P: Mike McLagan M: mike.mclagan@linux.org L: linux-net@vger.kernel.org S: Maintained FTAPE/QIC-117 P: Claus-Justus Heine M: claus@momo.math.rwth-aachen.de L: linux-tape@vger.kernel.org W: http://www-math.math.rwth-aachen.de/~LBFM/claus/ftape/ S: Maintained FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) P: Rik Faith M: faith@cs.unc.edu L: linux-scsi@vger.kernel.org S: Odd fixes (e.g., new signatures) GDT SCSI DISK ARRAY CONTROLLER DRIVER P: Achim Leubner M: achim@vortex.de L: linux-scsi@vger.kernel.org W: http://www.icp-vortex.com/ S: Supported HAYES ESP SERIAL DRIVER P: Andrew J. Robinson M: arobinso@nyx.net L: linux-kernel@vger.kernel.org W: http://www.nyx.net/~arobinso S: Maintained HFS FILESYSTEM P: Adrian Sun M: asun@cobaltnet.com L: linux-kernel@vger.kernel.org S: Maintained HGA FRAMEBUFFER DRIVER P: Ferenc Bakonyi M: fero@drama.obuda.kando.hu L: linux-nvidia@lists.surfsouth.com W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml S: Maintained HIGH-SPEED SCC DRIVER FOR AX.25 P: Klaus Kudielka M: klaus.kudielka@ieee.org L: linux-hams@vger.kernel.org W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ S: Maintained KERNEL BUILD (Makefile, Rules.make, scripts/*) P: Keith Owens M: kaos@ocs.com.au P: Michael Elizabeth Chastain M: mec@shout.net L: linux-kbuild@torque.net W: http://www.kernel.org/pub/linux/kernel/projects/kbuild/ S: Maintained LOGICAL VOLUME MANAGER P: Heinz Mauelshagen M: linux-LVM@EZ-Darmstadt.Telekom.de L: linux-LVM@msede.com W: http://linux.msede.com/lvm S: Maintained HIPPI P: Jes Sorensen M: Jes.Sorensen@cern.ch L: linux-hippi@sunsite.auc.dk S: Maintained HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series P: Jaroslav Kysela M: perex@suse.cz S: Maintained HPFS FILESYSTEM P: Mikulas Patocka M: mikulas@artax.karlin.mff.cuni.cz W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi S: Maintained I2C DRIVERS P: Simon Vogl M: simon@tk.uni-linz.ac.at P: Frodo Looijaard M: frodol@dds.nl L: linux-i2c@pelican.tk.uni-linz.ac.at W: http://www.tk.uni-linz.ac.at/~simon/private/i2c S: Maintained i386 BOOT CODE P: Riley H. Williams M: rhw@memalpha.cx L: Linux-Kernel@vger.kernel.org S: Maintained i810 TCO TIMER WATCHDOG P: Nils Faerber M: nils@kernelconcepts.de W: http://www.kernelconcepts.de/ S: Maintained IBM MCA SCSI SUBSYSTEM DRIVER P: Michael Lang M: langa2@kph.uni-mainz.de W: http://www.uni-mainz.de/~langm000/linux.html S: Maintained IBM ServeRAID RAID DRIVER P: Keith Mitchell M: ipslinux@us.ibm.com W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html S: Supported IDE DRIVER [GENERAL] P: Andre Hedrick M: andre@linux-ide.org M: ahedrick@atipa.com M: andre@suse.com L: linux-kernel@vger.kernel.org W: http://www.kernel.org/pub/linux/kernel/people/hedrick/ W: http://www.linux-ide.org/ S: Supported IDE/ATAPI CDROM DRIVER P: Jens Axboe M: axboe@suse.de L: linux-kernel@vger.kernel.org W: http://www.kernel.dk S: Maintained IDE/ATAPI TAPE/FLOPPY DRIVERS P: Gadi Oxman M: Gadi Oxman <gadio@netvision.net.il> L: linux-kernel@vger.kernel.org S: Maintained IEEE 1394 SUBSYSTEM P: Andreas Bombe M: andreas.bombe@munich.netsurf.de L: linux1394-devel@lists.sourceforge.net W: http://linux1394.sourceforge.net/ S: Maintained IEEE 1394 AIC5800 DRIVER L: linux1394-devel@lists.sourceforge.net S: Orphan IEEE 1394 OHCI DRIVER P: Sebastien Rougeaux M: sebastien.rougeaux@anu.edu.au L: linux1394-devel@lists.sourceforge.net S: Maintained IEEE 1394 PCILYNX DRIVER P: Andreas Bombe M: andreas.bombe@munich.netsurf.de L: linux1394-devel@lists.sourceforge.net S: Maintained IEEE 1394 RAW I/O DRIVER P: Andreas Bombe M: andreas.bombe@munich.netsurf.de L: linux1394-devel@lists.sourceforge.net S: Maintained INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT P: Ingo Molnar M: mingo@redhat.com S: Maintained INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT P: Jeff Garzik M: jgarzik@mandrakesoft.com W: http://sourceforge.net/projects/gkernel/ S: Maintained INTEL IA32 MICROCODE UPDATE SUPPORT P: Tigran Aivazian M: tigran@veritas.com S: Maintained IP MASQUERADING: P: Juanjo Ciarlante M: jjciarla@raiz.uncu.edu.ar S: Maintained IPX/SPX NETWORK LAYER P: Jay Schulist M: jschlst@turbolinux.com L: linux-net@vger.kernel.org S: Maintained IRDA SUBSYSTEM P: Dag Brattli M: Dag Brattli <dag@brattli.net> L: linux-irda@pasta.cs.uit.no W: http://irda.sourceforge.net/ S: Maintained ISAPNP P: Jaroslav Kysela M: perex@suse.cz S: Maintained ISDN SUBSYSTEM (general) P: Fritz Elfert M: fritz@isdn4linux.de L: isdn4linux@listserv.isdn4linux.de W: http://www.isdn4linux.de S: Maintained ISDN SUBSYSTEM (card drivers) P: Karsten Keil M: kkeil@suse.de L: isdn4linux@listserv.isdn4linux.de W: http://www.isdn4linux.de S: Maintained ISDN SUBSYSTEM (Eicon active card driver) P: Armin Schindler M: mac@melware.de L: isdn4linux@listserv.isdn4linux.de W: http://www.melware.de S: Maintained JOURNALLING FLASH FILE SYSTEM (JFFS) P: Axis Communications AB M: jffs-dev@axis.com L: jffs-dev@axis.com W: http://www.developer.axis.com/software/jffs/ S: Maintained JOYSTICK DRIVER P: Vojtech Pavlik M: vojtech@suse.cz L: linux-joystick@atrey.karlin.mff.cuni.cz W: http://www.suse.cz/development/joystick/ S: Supported KERNEL AUTOMOUNTER (AUTOFS) P: H. Peter Anvin M: hpa@zytor.com L: autofs@linux.kernel.org S: Maintained KERNEL AUTOMOUNTER v4 (AUTOFS4) P: Jeremy Fitzhardinge M: jeremy@goop.org L: autofs@linux.kernel.org S: Maintained KERNEL NFSD P: Neil Brown M: neilb@cse.unsw.edu.au L: nfs-devel@linux.kernel.org (Linux NFS) L: nfs@lists.sourceforge.net W: http://nfs.sourceforge.net/ W: http://www.cse.unsw.edu.au/~neilb/oss/knfsd/ S: Maintained LANMEDIA WAN CARD DRIVER P: Andrew Stanley-Jones M: asj@lanmedia.com W: http://www.lanmedia.com/ S: Supported LAPB module P: Henner Eisen M: eis@baty.hanse.de L: linux-x25@vger.kernel.org S: Maintained LINUX FOR POWERPC P: Cort Dougan M: cort@fsmlabs.com W: http://www.ppc.kernel.org/ S: Maintained LINUX FOR POWER MACINTOSH P: Paul Mackerras M: paulus@linuxcare.com W: http://www.linuxppc.org/ L: linuxppc-dev@lists.linuxppc.org S: Maintained M68K P: Jes Sorensen M: Jes.Sorensen@cern.ch W: http://www.clark.net/pub/lawrencc/linux/index.html L: linux-m68k@lists.linux-m68k.org S: Maintained M68K ON APPLE MACINTOSH P: Joshua Thompson M: funaho@jurai.org W: http://www.mac.linux-m68k.org/ L: linux-mac68k@mac.linux-m68k.org S: Maintained M68K ON HP9000/300 P: Philip Blundell M: philb@gnu.org W: http://www.tazenda.demon.co.uk/phil/linux-hp S: Maintained MAESTRO PCI SOUND DRIVER P: Zach Brown M: zab@zabbo.net S: Odd Fixes MEMORY TECHNOLOGY DEVICES P: David Woodhouse M: dwmw2@redhat.com W: http://www.linux-mtd.infradead.org/ L: mtd@infradead.org S: Maintained MIPS P: Ralf Baechle M: ralf@gnu.ai.mit.edu W: http://lena.fnet.fr/ L: linux-mips@fnet.fr S: Maintained MISCELLANEOUS MCA-SUPPORT P: David Weinehall M: Project MCA Team <mcalinux@acc.umu.se> M: David Weinehall <tao@acc.umu.se> W: http://www.acc.umu.se/~tao/ W: http://www.acc.umu.se/~mcalinux/ L: linux-kernel@vger.kernel.org S: Maintained MODULE SUPPORT [GENERAL], KMOD P: Keith Owens M: kaos@ocs.com.au L: linux-kernel@vger.kernel.org S: Maintained MOUSE AND MISC DEVICES [GENERAL] P: Alessandro Rubini M: rubini@ipvvis.unipv.it L: linux-kernel@vger.kernel.org S: Maintained MTRR AND SIMILAR SUPPORT [i386] P: Richard Gooch M: rgooch@atnf.csiro.au L: linux-kernel@vger.kernel.org W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html S: Maintained MULTISOUND SOUND DRIVER P: Andrew Veliath M: andrewtv@usa.net S: Maintained NCP FILESYSTEM P: Petr Vandrovec M: vandrove@vc.cvut.cz P: Volker Lendecke M: vl@kki.org L: linware@sh.cvut.cz S: Maintained NETFILTER P: Rusty Russell M: rusty@linuxcare.com P: Marc Boucher M: marc@mbsi.ca W: http://www.samba.org/netfilter/ W: http://netfilter.kernelnotes.org W: http://netfilter.filewatcher.org L: netfilter@lists.samba.org S: Supported NETROM NETWORK LAYER P: Tomi Manninen M: Tomi.Manninen@hut.fi L: linux-hams@vger.kernel.org S: Maintained NETWORK BLOCK DEVICE P: Pavel Machek M: pavel@atrey.karlin.mff.cuni.cz S: Maintained NETWORKING [GENERAL] P: Networking Team M: netdev@oss.sgi.com L: linux-net@vger.kernel.org W: http://www.uk.linux.org/NetNews.html (2.0 only) S: Maintained NETWORKING [IPv4/IPv6] P: David S. Miller M: davem@redhat.com P: Andi Kleen M: ak@muc.de P: Alexey Kuznetsov M: kuznet@ms2.inr.ac.ru L: netdev@oss.sgi.com S: Maintained NFS CLIENT P: Trond Myklebust M: trond.myklebust@fys.uio.no L: linux-kernel@vger.kernel.org S: Maintained NI5010 NETWORK DRIVER P: Jan-Pascal van Best and Andreas Mohr M: Jan-Pascal van Best <jvbest@qv3pluto.leidenuniv.nl> M: Andreas Mohr <100.30936@germany.net> L: linux-net@vger.kernel.org S: Maintained NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility) P: Eberhard Moenkeberg M: emoenke@gwdg.de L: linux-kernel@vger.kernel.org S: Maintained NTFS FILESYSTEM P: Anton Altaparmakov M: aia21@cus.cam.ac.uk L: linux-kernel@vger.kernel.org S: Odd Fixes NVIDIA (RIVA) FRAMEBUFFER DRIVER P: Ani Joshi M: ajoshi@shell.unixbox.com L: linux-nvidia@lists.surfsouth.com S: Maintained OLYMPIC NETWORK DRIVER P: Peter De Shrijver M: p2@ace.ulyssis.sutdent.kuleuven.ac.be P: Mike Phillips M: phillim@amtrak.com L: linux-net@vger.kernel.org L: linux-tr@emissary.aus-etc.com W: http://www.linuxtr.net S: Maintained ONSTREAM SCSI TAPE DRIVER P: Willem Riede M: osst@riede.org L: osst@linux1.onstream.nl L: linux-scsi@vger.rutgers.edu S: Maintained OPL3-SA2, SA3, and SAx DRIVER P: Scott Murray M: scott@spiteful.org L: linux-sound@vger.kernel.org S: Maintained PARALLEL PORT SUPPORT P: Phil Blundell M: Philip.Blundell@pobox.com P: Tim Waugh M: tim@cyberelk.demon.co.uk P: David Campbell M: campbell@torque.net P: Andrea Arcangeli M: andrea@e-mind.com L: linux-parport@torque.net W: http://people.redhat.com/twaugh/parport/ S: Maintained PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES P: Tim Waugh M: tim@cyberelk.demon.co.uk L: linux-parport@torque.net W: http://www.torque.net/linux-pp.html S: Maintained PCI ID DATABASE P: Jens Maurer M: jmaurer@cck.uni-kl.de S: Maintained PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES) P: Thomas Sailer M: sailer@ife.ee.ethz.ch L: linux-sound@vger.kernel.org W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html S: Maintained PCI SUBSYSTEM P: Martin Mares M: mj@suse.cz L: linux-kernel@vger.kernel.org S: Supported PCMCIA SUBSYSTEM P: David Hinds M: dhinds@zen.stanford.edu L: linux-kernel@vger.kernel.org W: http://pcmcia-cs.sourceforge.net S: Maintained PCNET32 NETWORK DRIVER P: Thomas Bogendörfer M: tsbogend@alpha.franken.de L: linux-net@vger.kernel.org S: Maintained PNP SUPPORT P: Tom Lees M: tom@lpsg.demon.co.uk L: pnp-users@ferret.lmh.ox.ac.uk L: pnp-devel@ferret.lmh.ox.ac.uk W: http://www-jcr.lmh.ox.ac.uk/~pnp/ S: Maintained PPP PROTOCOL DRIVERS AND COMPRESSORS P: Paul Mackerras M: paulus@linuxcare.com L: linux-ppp@vger.kernel.org S: Maintained PPP OVER ETHERNET P: Michal Ostrowski M: mostrows@styx.uwaterloo.ca S: Maintained PROMISE DC4030 CACHING DISK CONTROLLER DRIVER P: Peter Denison M: promise@pnd-pc.demon.co.uk W: http://www.pnd-pc.demon.co.uk/promise/ S: Maintained QNX4 FILESYSTEM P: Anders Larsen M: al@alarsen.net L: linux-kernel@vger.kernel.org W: http://www.alarsen.net/linux/qnx4fs/ S: Maintained RAGE128 FRAMEBUFFER DISPLAY DRIVER P: Brad Douglas M: brad@neruo.com L: linux-fbdev@vuser.vu.union.edu S: Maintained RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER P: Corey Thomas M: corey@world.std.com L: linux-kernel@vger.kernel.org S: Maintained REAL TIME CLOCK DRIVER P: Paul Gortmaker M: p_gortmaker@yahoo.com L: linux-kernel@vger.kernel.org S: Maintained ROSE NETWORK LAYER P: Jean-Paul Roubelat M: jpr@f6fbb.org L: linux-hams@vger.kernel.org S: Maintained RISCOM8 DRIVER P: Dmitry Gorodchanin M: pgmdsg@ibi.com L: linux-kernel@vger.kernel.org S: Maintained RTLINUX REALTIME LINUX P: Victor Yodaiken M: yodaiken@fsmlabs.com L: rtl@rtlinux.org W: www.rtlinux.org S: Maintained SA1100 SUPPORT P: Nicolas Pitre M: nico@cam.org L: sa1100-linux@pa.dec.com S: Maintained SBPCD CDROM DRIVER P: Eberhard Moenkeberg M: emoenke@gwdg.de L: linux-kernel@vger.kernel.org S: Maintained SCSI CDROM DRIVER P: Jens Axboe M: axboe@suse.de L: linux-scsi@vger.kernel.org W: http://www.kernel.dk S: Maintained SCSI SG DRIVER P: Doug Gilbert M: dgilbert@interlog.com L: linux-scsi@vger.kernel.org W: http://www.torque.net/sg S: Maintained SCSI SUBSYSTEM L: linux-scsi@vger.kernel.org S: Unmaintained SCSI TAPE DRIVER P: Kai Mdkisara M: Kai.Makisara@metla.fi L: linux-scsi@vger.kernel.org S: Maintained SGI VISUAL WORKSTATION 320 AND 540 P: Bent Hagemark M: bh@sgi.com P: Ingo Molnar M: mingo@redhat.com S: Maintained SIS 900/7016 FAST ETHERNET DRIVER P: Ollie Lho M: ollie@sis.com.tw L: linux-net@vger.kernel.org S: Supported SMB FILESYSTEM P: Urban Widmark M: urban@svenskatest.se W: http://samba.org/ L: samba@samba.org S: Maintained SMP: (except SPARC) P: Linus Torvalds M: torvalds@transmeta.com L: linux-smp@vger.kernel.org S: Maintained SOFTWARE RAID (Multiple Disks) SUPPORT P: Ingo Molnar M: mingo@redhat.com S: Maintained SONIC NETWORK DRIVER P: Thomas Bogendoerfer M: tsbogend@alpha.franken.de L: linux-net@vger.kernel.org S: Maintained SOUND P: Alan Cox M: alan@redhat.com S: Maintained for 2.2 only SPARC: P: David S. Miller M: davem@redhat.com P: Eddie C. Dost M: ecd@skynet.be P: Jakub Jelinek M: jj@sunsite.ms.mff.cuni.cz P: Anton Blanchard M: anton@linuxcare.com L: sparclinux@vger.kernel.org L: ultralinux@vger.kernel.org W: http://ultra.linux.cz W: http://www.geog.ubc.ca/s_linux.html S: Maintained SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER P: Roger Wolff M: R.E.Wolff@BitWizard.nl M: io8-linux@specialix.co.uk L: linux-kernel@vger.kernel.org ? S: Supported SPX NETWORK LAYER P: Jay Schulist M: jschlst@turbolinux.com L: linux-net@vger.kernel.org S: Supported SNA NETWORK LAYER P: Jay Schulist M: jschlst@turbolinux.com L: linux-sna@turbolinux.com W: http://www.linux-sna.org S: Supported STALLION TECHNOLOGIES MULTIPORT SERIAL BOARDS M: support@stallion.oz.au W: http://www.stallion.com S: Supported STARMODE RADIO IP (STRIP) PROTOCOL DRIVER W: http://mosquitonet.Stanford.EDU/strip.html S: Unsupported ? STRADIS MPEG-2 DECODER DRIVER P: Nathan Laredo M: laredo@gnu.org W: http://mpeg.openprojects.net/ W: http://www.stradis.com/ S: Maintained SUPERH P: Niibe Yutaka M: gniibe@m17n.org P: Kazumoto Kojima M: kkojima@rr.iij4u.or.jp L: linux-sh@m17n.org W: http://www.m17n.org/linux-sh/ W: http://www.rr.iij4u.or.jp/~kkojima/linux-sh4.html S: Maintained SVGA HANDLING P: Martin Mares M: mj@suse.cz L: linux-video@atrey.karlin.mff.cuni.cz S: Maintained SYSV FILESYSTEM P: Krzysztof G. Baranowski M: kgb@manjak.knm.org.pl S: Maintained TLAN NETWORK DRIVER P: Torben Mathiasen M: torben.mathiasen@compaq.com M: torben@kernel.dk L: tlan@vuser.vu.union.edu L: linux-net@vger.kernel.org W: http://tlan.kernel.dk S: Maintained TOKEN-RING NETWORK DRIVER P: Paul Norton M: pnorton@ieee.org L: linux-net@vger.kernel.org L: linux-tr@linuxtr.net S: Maintained TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE P: Ollie Lho M: ollie@sis.com.tw L: linux-kernel@vger.kernel.org S: Supported TMS380 TOKEN-RING NETWORK DRIVER P: Adam Fritzler M: mid@auk.cx L: linux-tr@linuxtr.net W: http://www.auk.cx/tms380tr/ S: Maintained TULIP NETWORK DRIVER P: Jeff Garzik M: jgarzik@mandrakesoft.com L: tulip-users@lists.sourceforge.net W: http://sourceforge.net/projects/tulip/ S: Maintained TUN/TAP driver P: Maxim Krasnyansky M: maxk@qualcomm.com, max_mk@yahoo.com L: vtun@office.satix.net W: http://vtun.sourceforge.net/tun S: Maintained U14-34F SCSI DRIVER P: Dario Ballabio M: ballabio_dario@emc.com L: linux-scsi@vger.kernel.org S: Maintained UDF FILESYSTEM P: Ben Fennema M: bfennema@falcon.csc.calpoly.edu P: Dave Boynton M: dave@trylinux.com L: linux_udf@hootie.lvld.hp.com W: http://www.trylinux.com/projects/udf/index.html S: Maintained UMSDOS FILESYSTEM P: Matija Nalis M: Matija Nalis <mnalis-umsdos@voyager.hr> L: linux-kernel@vger.kernel.org W: http://linux.voyager.hr/umsdos/ S: Maintained UNIFORM CDROM DRIVER P: Jens Axboe M: axboe@suse.de L: linux-kernel@vger.kernel.org W: http://www.kernel.dk S: Maintained USB SUBSYSTEM P: Johannes Erdfelt M: jerdfelt@valinux.com M: johannes@erdfelt.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net W: http://www.linux-usb.org S: Supported USB ACM DRIVER P: Vojtech Pavlik M: vojtech@suse.cz L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Supported USB BLUETOOTH DRIVER P: Greg Kroah-Hartman M: greg@kroah.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained W: http://www.kroah.com/linux-usb/ USB HID/HIDBP/INPUT DRIVERS P: Vojtech Pavlik M: vojtech@suse.cz L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net W: http://www.suse.cz/development/input/ S: Supported USB HUB P: Johannes Erdfelt M: jerdfelt@valinux.com M: johannes@erdfelt.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB OHCI DRIVER P: Roman Weissgaerber M: weissg@vienna.at L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB OV511 DRIVER P: Mark McClelland M: mwm@i.am L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net W: http://alpha.dyndns.org/ov511/ S: Maintained USB PEGASUS DRIVER P: Petko Manolov M: petkan@dce.bg L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB PRINTER DRIVER P: Vojtech Pavlik M: vojtech@suse.cz L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Supported USB SERIAL DIGI ACCELEPORT DRIVER P: Peter Berger and Al Borchers M: pberger@brimson.com M: alborchers@steinerpoint.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB SERIAL KEYSPAN DRIVER P: Hugh Blemings M: hugh@linuxcare.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained W: http://www.linuxcare.com.au/hugh/keyspan.html USB SERIAL DRIVER P: Greg Kroah-Hartman M: greg@kroah.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained W: http://www.kroah.com/linux-usb/ USB SERIAL BELKIN F5U103 DRIVER P: William Greathouse M: wgreathouse@smva.com M: wgreathouse@myfavoritei.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER P: Gary Brubaker M: xavyer@ix.netcom.com L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained USB MASS STORAGE DRIVER P: Matthew Dharm M: mdharm-usb@one-eyed-alien.net L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net S: Maintained W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ USB UHCI DRIVER P: Georg Acher M: usb@in.tum.de L: linux-usb-users@lists.sourceforge.net L: linux-usb-devel@lists.sourceforge.net W: http://usb.in.tum.de S: Maintained VFAT FILESYSTEM: P: Gordon Chaffee M: chaffee@cs.berkeley.edu L: linux-kernel@vger.kernel.org W: http://bmrc.berkeley.edu/people/chaffee S: Maintained VIA 82Cxxx AUDIO DRIVER P: Jeff Garzik M: jgarzik@mandrakesoft.com L: linux-via@gtf.org W: http://sourceforge.net/projects/gkernel/ S: Maintained USB DIAMOND RIO500 DRIVER P: Cesar Miquel M: miquel@df.uba.ar L: rio500-users@lists.sourceforge.net W: http://rio500.sourceforge.net S: Maintained VIDEO FOR LINUX P: Alan Cox M: Alan.Cox@linux.org W: http://roadrunner.swansea.linux.org.uk/v4l.shtml S: Maintained for 2.2 only WAN ROUTER & SANGOMA WANPIPE DRIVERS & API (X.25, FRAME RELAY, PPP, CISCO HDLC) P: Jaspreet Singh M: jaspreet@sangoma.com M: dm@sangoma.com W: http://www.sangoma.com S: Supported WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS P: Jean Tourrilhes M: jt@hpl.hp.com W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ S: Maintained WD7000 SCSI DRIVER P: Miroslav Zagorac M: zaga@fly.cc.fer.hr L: linux-scsi@vger.kernel.org S: Maintained X.25 NETWORK LAYER P: Henner Eisen M: eis@baty.hanse.de L: linux-x25@vger.kernel.org S: Maintained Z85230 SYNCHRONOUS DRIVER P: Alan Cox M: alan@redhat.com W: http://roadrunner.swansea.linux.org.uk/synchronous.shtml S: Maintained for 2.2 only Z8530 DRIVER FOR AX.25 P: Joerg Reuter M: jreuter@yaina.de W: http://yaina.de/jreuter/ W: http://www.qsl.net/dl1bke/ L: linux-hams@vger.kernel.org S: Maintained ZR36120 VIDEO FOR LINUX DRIVER P: Pauline Middelink M: middelin@polyware.nl W: http://www.polyware.nl/~middelin/En/hobbies.html W: http://www.polyware.nl/~middelin/hobbies.html S: Maintained THE REST P: Linus Torvalds S: Buried alive in reporters |