svn commit: r359521 - in head: share/man/man4 sys/dev/usb/misc

Warner Losh imp at FreeBSD.org
Wed Apr 1 16:42:58 UTC 2020


Author: imp
Date: Wed Apr  1 16:22:31 2020
New Revision: 359521
URL: https://svnweb.freebsd.org/changeset/base/359521

Log:
  Start the retirement process for ufm
  
  This driver hasn't been relevant in almost 15 years. It was for a product on the
  shelves for about 6 months in 2003/2004. I've not updated the driver since then,
  and have had nobody talk to me about it since maybe 2006 or 2007. It doesn't
  implement a standard interface, and can be better done with libusb. All the
  action has moved to webcamd for newer, more fully featured hardware. It makes no
  appearances in the nycbug dmesg archive.
  
  Relnotes: yes
  MFC After: 3 days

Modified:
  head/share/man/man4/ufm.4
  head/sys/dev/usb/misc/ufm.c

Modified: head/share/man/man4/ufm.4
==============================================================================
--- head/share/man/man4/ufm.4	Wed Apr  1 16:21:11 2020	(r359520)
+++ head/share/man/man4/ufm.4	Wed Apr  1 16:22:31 2020	(r359521)
@@ -43,6 +43,12 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 ufm_load="YES"
 .Ed
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 13.0
+and later.
 .Sh DESCRIPTION
 The
 .Nm

Modified: head/sys/dev/usb/misc/ufm.c
==============================================================================
--- head/sys/dev/usb/misc/ufm.c	Wed Apr  1 16:21:11 2020	(r359520)
+++ head/sys/dev/usb/misc/ufm.c	Wed Apr  1 16:22:31 2020	(r359521)
@@ -164,6 +164,7 @@ ufm_attach(device_t dev)
 	if (error) {
 		goto detach;
 	}
+	gone_in_dev(dev, 13, "Driver no longer relevant");
 	return (0);			/* success */
 
 detach:


More information about the svn-src-head mailing list