Author: imp Date: Mon Oct 22 02:34:25 2018 New Revision: 339565 URL: https://svnweb.freebsd.org/changeset/base/339565
Log: Remove aha(4) from the tree. We tagged aha as gone in 12 a while ago. Proceed with its removal. Data from nycbug's database shows the last sighting of this driver in 6, with the prior one in 4.x show its popularity had died prior to 4.x. Relnotes: yes Deleted: head/share/man/man4/aha.4 head/sys/dev/aha/aha.c head/sys/dev/aha/aha_isa.c head/sys/dev/aha/ahareg.h head/sys/modules/aha/Makefile Modified: head/share/man/man4/Makefile head/share/man/man4/adv.4 head/share/man/man4/ahc.4 head/share/man/man4/man4.i386/aic.4 head/share/man/man4/scsi.4 head/sys/conf/NOTES head/sys/conf/files head/sys/kern/Make.tags.inc head/sys/modules/Makefile head/sys/sparc64/conf/NOTES Modified: head/share/man/man4/Makefile ============================================================================== --- head/share/man/man4/Makefile Mon Oct 22 02:34:10 2018 (r339564) +++ head/share/man/man4/Makefile Mon Oct 22 02:34:25 2018 (r339565) @@ -29,7 +29,6 @@ MAN= aac.4 \ ${_aesni.4} \ age.4 \ agp.4 \ - aha.4 \ ahc.4 \ ahci.4 \ ahd.4 \ Modified: head/share/man/man4/adv.4 ============================================================================== --- head/share/man/man4/adv.4 Mon Oct 22 02:34:10 2018 (r339564) +++ head/share/man/man4/adv.4 Mon Oct 22 02:34:25 2018 (r339565) @@ -200,7 +200,6 @@ AdvanSys ABP980UA/3980UA .El .Sh SEE ALSO .Xr adw 4 , -.Xr aha 4 , .Xr ahc 4 , .Xr cd 4 , .Xr da 4 , Modified: head/share/man/man4/ahc.4 ============================================================================== --- head/share/man/man4/ahc.4 Mon Oct 22 02:34:10 2018 (r339564) +++ head/share/man/man4/ahc.4 Mon Oct 22 02:34:25 2018 (r339565) @@ -360,7 +360,6 @@ local SCB space serves as a cache for disconnected tra more SCB space available, the less host bus traffic consumed saving and restoring SCB data. .Sh SEE ALSO -.Xr aha 4 , .Xr ahd 4 , .Xr cd 4 , .Xr da 4 , Modified: head/share/man/man4/man4.i386/aic.4 ============================================================================== --- head/share/man/man4/man4.i386/aic.4 Mon Oct 22 02:34:10 2018 (r339564) +++ head/share/man/man4/man4.i386/aic.4 Mon Oct 22 02:34:25 2018 (r339565) @@ -64,7 +64,6 @@ Creative Labs SoundBlaster SCSI host adapter (ISA) Adaptec AHA-1460, AHA-1460B, AHA-1460C, AHA-1460D (PC Card) .El .Sh SEE ALSO -.Xr aha 4 , .Xr ahc 4 , .Xr cd 4 , .Xr ch 4 , Modified: head/share/man/man4/scsi.4 ============================================================================== --- head/share/man/man4/scsi.4 Mon Oct 22 02:34:10 2018 (r339564) +++ head/share/man/man4/scsi.4 Mon Oct 22 02:34:25 2018 (r339565) @@ -344,7 +344,6 @@ See for details. .Sh SEE ALSO .Xr ada 4 , -.Xr aha 4 , .Xr ahc 4 , .Xr ahci 4 , .Xr ahd 4 , Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Mon Oct 22 02:34:10 2018 (r339564) +++ head/sys/conf/NOTES Mon Oct 22 02:34:25 2018 (r339565) @@ -1550,7 +1550,6 @@ options TERMINAL_KERN_ATTR=(FG_LIGHTRED|BG_BLACK) # # adv: All Narrow SCSI bus AdvanSys controllers. # adw: Second Generation AdvanSys controllers including the ADV940UW. -# aha: Adaptec 154x/1535/1640 # ahc: Adaptec 274x/284x/2910/293x/294x/394x/3950x/3960x/398X/4944/ # 19160x/29160x, aic7770/aic78xx # ahd: Adaptec 29320/39320 Controllers. @@ -1586,8 +1585,6 @@ hint.bt.0.port="0x330" device adv hint.adv.0.at="isa" device adw -device aha -hint.aha.0.at="isa" device aic hint.aic.0.at="isa" device ahc Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Mon Oct 22 02:34:10 2018 (r339564) +++ head/sys/conf/files Mon Oct 22 02:34:25 2018 (r339565) @@ -767,8 +767,6 @@ dev/ae/if_ae.c optional ae pci dev/age/if_age.c optional age pci dev/agp/agp.c optional agp pci dev/agp/agp_if.m optional agp pci -dev/aha/aha.c optional aha -dev/aha/aha_isa.c optional aha isa dev/ahci/ahci.c optional ahci dev/ahci/ahciem.c optional ahci dev/ahci/ahci_pci.c optional ahci pci Modified: head/sys/kern/Make.tags.inc ============================================================================== --- head/sys/kern/Make.tags.inc Mon Oct 22 02:34:10 2018 (r339564) +++ head/sys/kern/Make.tags.inc Mon Oct 22 02:34:25 2018 (r339565) @@ -12,7 +12,6 @@ SYS?= ${.CURDIR}/.. COMM= ${SYS}/dev/advansys/*.[ch] \ ${SYS}/sys/vnode.h \ - ${SYS}/dev/aha/*.[ch] \ ${SYS}/dev/alc/*.[ch] \ ${SYS}/dev/buslogic/*.[ch] \ ${SYS}/dev/dpt/*.[ch] \ @@ -69,7 +68,6 @@ COMMDIR1= ${SYS}/conf \ ${SYS}/sys COMMDIR2= ${SYS}/dev/advansys \ - ${SYS}/dev/aha \ ${SYS}/dev/alc \ ${SYS}/dev/buslogic \ ${SYS}/dev/dpt \ Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Mon Oct 22 02:34:10 2018 (r339564) +++ head/sys/modules/Makefile Mon Oct 22 02:34:25 2018 (r339565) @@ -26,7 +26,6 @@ SUBDIR= \ ${_aesni} \ age \ ${_agp} \ - aha \ ahci \ ${_aic} \ aic7xxx \ Modified: head/sys/sparc64/conf/NOTES ============================================================================== --- head/sys/sparc64/conf/NOTES Mon Oct 22 02:34:10 2018 (r339564) +++ head/sys/sparc64/conf/NOTES Mon Oct 22 02:34:25 2018 (r339565) @@ -119,7 +119,6 @@ nodevice snd_via8233 nodevice snd_via82c686 nodevice snd_vibes nodevice snd_uaudio -nodevice aha nodevice bt nodevice ep nodevice ex _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"