svn commit: r324280 - head/sys/dev/ofw

Warner Losh imp at FreeBSD.org
Wed Oct 4 14:41:46 UTC 2017


Author: imp
Date: Wed Oct  4 14:41:45 2017
New Revision: 324280
URL: https://svnweb.freebsd.org/changeset/base/324280

Log:
  'private' isn't a PNP string field, so instead used the reserved '#'
  name for this field (it might even be possible to just drop it
  entirely, since it will be ignored either way).
  
  Sponsored by: Netflix

Modified:
  head/sys/dev/ofw/ofw_bus_subr.h

Modified: head/sys/dev/ofw/ofw_bus_subr.h
==============================================================================
--- head/sys/dev/ofw/ofw_bus_subr.h	Wed Oct  4 14:39:55 2017	(r324279)
+++ head/sys/dev/ofw/ofw_bus_subr.h	Wed Oct  4 14:41:45 2017	(r324280)
@@ -63,7 +63,7 @@ struct intr_map_data_fdt {
 };
 #endif
 
-#define SIMPLEBUS_PNP_DESCR "Z:compat;P:private;"
+#define SIMPLEBUS_PNP_DESCR "Z:compat;P:#;"
 #define SIMPLEBUS_PNP_INFO(t) \
 	MODULE_PNP_INFO(SIMPLEBUS_PNP_DESCR, simplebus, t, t, sizeof(t[0]), sizeof(t) / sizeof(t[0]));
 


More information about the svn-src-head mailing list