svn commit: r360061 - in head: share/man/man4 sys/dev/mly

Warner Losh imp at FreeBSD.org
Sat Apr 18 02:53:06 UTC 2020


Author: imp
Date: Sat Apr 18 02:53:04 2020
New Revision: 360061
URL: https://svnweb.freebsd.org/changeset/base/360061

Log:
  Add deprecation notice to mly

Modified:
  head/share/man/man4/mly.4
  head/sys/dev/mly/mly.c

Modified: head/share/man/man4/mly.4
==============================================================================
--- head/share/man/man4/mly.4	Sat Apr 18 02:52:59 2020	(r360060)
+++ head/share/man/man4/mly.4	Sat Apr 18 02:53:04 2020	(r360061)
@@ -47,6 +47,11 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 mly_load="YES"
 .Ed
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 13.0 .
 .Sh DESCRIPTION
 The
 .Nm

Modified: head/sys/dev/mly/mly.c
==============================================================================
--- head/sys/dev/mly/mly.c	Sat Apr 18 02:52:59 2020	(r360060)
+++ head/sys/dev/mly/mly.c	Sat Apr 18 02:53:04 2020	(r360061)
@@ -336,6 +336,8 @@ mly_attach(device_t dev)
  out:
     if (error != 0)
 	mly_free(sc);
+    else
+	gone_in_dev(dev, 13, "mly(4) removed");
     return(error);
 }
 


More information about the svn-src-head mailing list