svn commit: r325237 - stable/11/sys/sys

Mark Johnston markj at FreeBSD.org
Tue Oct 31 15:01:53 UTC 2017


Author: markj
Date: Tue Oct 31 15:01:52 2017
New Revision: 325237
URL: https://svnweb.freebsd.org/changeset/base/325237

Log:
  MFC r324923:
  Remove resource_set_*() declarations from sys/bus.h.
  
  PR:	223189

Modified:
  stable/11/sys/sys/bus.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/bus.h
==============================================================================
--- stable/11/sys/sys/bus.h	Tue Oct 31 12:41:07 2017	(r325236)
+++ stable/11/sys/sys/bus.h	Tue Oct 31 15:01:52 2017	(r325237)
@@ -632,7 +632,6 @@ struct sysctl_oid *devclass_get_sysctl_tree(devclass_t
 /*
  * Access functions for device resources.
  */
-
 int	resource_int_value(const char *name, int unit, const char *resname,
 			   int *result);
 int	resource_long_value(const char *name, int unit, const char *resname,
@@ -644,12 +643,6 @@ int	resource_find_match(int *anchor, const char **name
 			    const char *resname, const char *value);
 int	resource_find_dev(int *anchor, const char *name, int *unit,
 			  const char *resname, const char *value);
-int	resource_set_int(const char *name, int unit, const char *resname,
-			 int value);
-int	resource_set_long(const char *name, int unit, const char *resname,
-			  long value);
-int	resource_set_string(const char *name, int unit, const char *resname,
-			    const char *value);
 int	resource_unset_value(const char *name, int unit, const char *resname);
 
 /*


More information about the svn-src-stable mailing list