Add deprecation notice to amr(4)

This commit is contained in:
Warner Losh 2020-04-18 02:53:19 +00:00
parent a32311eccd
commit 5c68be59c8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=360064
2 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,11 @@ module at boot time, place the following line in
.Bd -literal -offset indent
amr_load="YES"
.Ed
.Sh DEPRECATION NOTICE
The
.Nm
driver is not present in
.Fx 13.0 .
.Sh DESCRIPTION
The
.Nm

View File

@ -341,6 +341,8 @@ amr_pci_attach(device_t dev)
out:
if (error)
amr_pci_free(sc);
else
gone_in_dev(dev, 13, "amr(4) driver");
return(error);
}