svn commit: r295174 - in head: lib/libdevctl usr.sbin/devctl

John Baldwin jhb at FreeBSD.org
Tue Feb 2 22:55:05 UTC 2016


Author: jhb
Date: Tue Feb  2 22:55:03 2016
New Revision: 295174
URL: https://svnweb.freebsd.org/changeset/base/295174

Log:
  - Note that devctl(8) will appear in 10.3 first.
  - Add missing devctl_set_driver entry to namelist in devlist(3).
  - Fix sorting of function prototypes in devlist(3).
  
  MFC after:	3 days

Modified:
  head/lib/libdevctl/devctl.3
  head/usr.sbin/devctl/devctl.8

Modified: head/lib/libdevctl/devctl.3
==============================================================================
--- head/lib/libdevctl/devctl.3	Tue Feb  2 22:34:48 2016	(r295173)
+++ head/lib/libdevctl/devctl.3	Tue Feb  2 22:55:03 2016	(r295174)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 26, 2014
+.Dd February 2, 2016
 .Dt DEVCTL 3
 .Os
 .Sh NAME
@@ -35,6 +35,7 @@
 .Nm devctl_disable ,
 .Nm devctl_enable ,
 .Nm devctl_resume ,
+.Nm devctl_set_driver ,
 .Nm devctl_suspend
 .Nd device control library
 .Sh LIBRARY
@@ -52,9 +53,9 @@
 .Ft int
 .Fn devctl_resume "const char *device"
 .Ft int
-.Fn devctl_suspend "const char *device"
-.Ft int
 .Fn devctl_set_driver "const char *device" "const char *driver" "bool force"
+.Ft int
+.Fn devctl_suspend "const char *device"
 .Sh DESCRIPTION
 The
 .Nm
@@ -287,7 +288,7 @@ The new device driver failed to attach.
 The
 .Nm
 library first appeared in
-.Fx 11.0 .
+.Fx 10.3 .
 .Sh BUGS
 If a device is suspended individually via
 .Fn devctl_suspend

Modified: head/usr.sbin/devctl/devctl.8
==============================================================================
--- head/usr.sbin/devctl/devctl.8	Tue Feb  2 22:34:48 2016	(r295173)
+++ head/usr.sbin/devctl/devctl.8	Tue Feb  2 22:55:03 2016	(r295174)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 5, 2015
+.Dd February 2, 2016
 .Dt DEVCTL 8
 .Os
 .Sh NAME
@@ -134,4 +134,4 @@ the device will not be changed.
 The
 .Nm
 utility first appeared in
-.Fx 11.0 .
+.Fx 10.3 .


More information about the svn-src-all mailing list