aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2021-11-25 16:47:03 +0000
committerEd Maste <emaste@FreeBSD.org>2021-11-25 16:54:12 +0000
commitc433c96d865e49db8bba63f27ee692ce0e752546 (patch)
treeb4606fc6b953c795c3eb7cd0666708e33eccf177
parentab3f1b678dde27cbdb0aec175e65401202db6dad (diff)
downloadsrc-c433c96d865e49db8bba63f27ee692ce0e752546.tar.gz
src-c433c96d865e49db8bba63f27ee692ce0e752546.zip
Update deprecation version for drivers removed in main
Removal of the amr, esp, iir, mly and twa drivers was planned before FreeBSD 13, but did not happen before the branch. Update the depreciation notices to indicate that they are gone in FreeBSD 14. Sponsored by: The FreeBSD Foundation
-rw-r--r--share/man/man4/amr.42
-rw-r--r--share/man/man4/esp.42
-rw-r--r--share/man/man4/iir.42
-rw-r--r--share/man/man4/mly.42
-rw-r--r--share/man/man4/twa.42
-rw-r--r--sys/dev/amr/amr_pci.c2
-rw-r--r--sys/dev/esp/ncr53c9x.c2
-rw-r--r--sys/dev/iir/iir_pci.c2
-rw-r--r--sys/dev/mly/mly.c2
-rw-r--r--sys/dev/twa/tw_osl_freebsd.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/share/man/man4/amr.4 b/share/man/man4/amr.4
index 8ef14dfd1d9b..145ab0251e8a 100644
--- a/share/man/man4/amr.4
+++ b/share/man/man4/amr.4
@@ -49,7 +49,7 @@ amr_load="YES"
The
.Nm
driver is not present in
-.Fx 13.0 .
+.Fx 14.0 .
.Sh DESCRIPTION
The
.Nm
diff --git a/share/man/man4/esp.4 b/share/man/man4/esp.4
index 7fb426a02573..9f9f59faa093 100644
--- a/share/man/man4/esp.4
+++ b/share/man/man4/esp.4
@@ -49,7 +49,7 @@ if_esp_load="YES"
The
.Nm
driver is not present in
-.Fx 13.0 .
+.Fx 14.0 .
.Sh DESCRIPTION
The
.Nm
diff --git a/share/man/man4/iir.4 b/share/man/man4/iir.4
index fa742965eb90..eba9b88eb50c 100644
--- a/share/man/man4/iir.4
+++ b/share/man/man4/iir.4
@@ -12,7 +12,7 @@
The
.Nm
driver is not present in
-.Fx 13.0 .
+.Fx 14.0 .
.Sh SYNOPSIS
To compile this driver into the kernel,
place the following lines in your
diff --git a/share/man/man4/mly.4 b/share/man/man4/mly.4
index 1a59903dfb2c..f96844113542 100644
--- a/share/man/man4/mly.4
+++ b/share/man/man4/mly.4
@@ -51,7 +51,7 @@ mly_load="YES"
The
.Nm
driver is not present in
-.Fx 13.0 .
+.Fx 14.0 .
.Sh DESCRIPTION
The
.Nm
diff --git a/share/man/man4/twa.4 b/share/man/man4/twa.4
index 64e3e37f7da0..bdc3935d8079 100644
--- a/share/man/man4/twa.4
+++ b/share/man/man4/twa.4
@@ -35,7 +35,7 @@
The
.Nm
driver is not present in
-.Fx 13.0 .
+.Fx 14.0 .
.Sh SYNOPSIS
To compile this driver into the kernel,
place the following lines in your
diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c
index dd7128e372ef..c57262a8ccc2 100644
--- a/sys/dev/amr/amr_pci.c
+++ b/sys/dev/amr/amr_pci.c
@@ -340,7 +340,7 @@ out:
if (error)
amr_pci_free(sc);
else
- gone_in_dev(dev, 13, "amr(4) driver");
+ gone_in_dev(dev, 14, "amr(4) driver");
return(error);
}
diff --git a/sys/dev/esp/ncr53c9x.c b/sys/dev/esp/ncr53c9x.c
index 35ce9a4dbf2c..6068497ce76b 100644
--- a/sys/dev/esp/ncr53c9x.c
+++ b/sys/dev/esp/ncr53c9x.c
@@ -402,7 +402,7 @@ ncr53c9x_attach(struct ncr53c9x_softc *sc)
NCR_UNLOCK(sc);
- gone_in_dev(sc->sc_dev, 13, "esp(4) driver");
+ gone_in_dev(sc->sc_dev, 14, "esp(4) driver");
return (0);
fail_async:
diff --git a/sys/dev/iir/iir_pci.c b/sys/dev/iir/iir_pci.c
index 1dcdb7397e97..51ed27584a93 100644
--- a/sys/dev/iir/iir_pci.c
+++ b/sys/dev/iir/iir_pci.c
@@ -336,7 +336,7 @@ iir_pci_attach(device_t dev)
}
gdt_pci_enable_intr(gdt);
- gone_in_dev(dev, 13, "iir(4) removed");
+ gone_in_dev(dev, 14, "iir(4) removed");
return (0);
err:
diff --git a/sys/dev/mly/mly.c b/sys/dev/mly/mly.c
index 1bdcdbb87443..194a14e257e4 100644
--- a/sys/dev/mly/mly.c
+++ b/sys/dev/mly/mly.c
@@ -336,7 +336,7 @@ mly_attach(device_t dev)
if (error != 0)
mly_free(sc);
else
- gone_in_dev(dev, 13, "mly(4) removed");
+ gone_in_dev(dev, 14, "mly(4) removed");
return(error);
}
diff --git a/sys/dev/twa/tw_osl_freebsd.c b/sys/dev/twa/tw_osl_freebsd.c
index 6b76f424650a..ce79982bd95e 100644
--- a/sys/dev/twa/tw_osl_freebsd.c
+++ b/sys/dev/twa/tw_osl_freebsd.c
@@ -413,7 +413,7 @@ twa_attach(device_t dev)
callout_init(&(sc->watchdog_callout[0]), 1);
callout_init(&(sc->watchdog_callout[1]), 1);
callout_reset(&(sc->watchdog_callout[0]), 5*hz, twa_watchdog, &sc->ctlr_handle);
- gone_in_dev(dev, 13, "twa(4) removed");
+ gone_in_dev(dev, 14, "twa(4) removed");
return(0);
}