svn commit: r324758 - head/sys/dev/psci

Ed Maste emaste at FreeBSD.org
Thu Oct 19 16:40:18 UTC 2017


Author: emaste
Date: Thu Oct 19 16:40:17 2017
New Revision: 324758
URL: https://svnweb.freebsd.org/changeset/base/324758

Log:
  psci: change bootverbose string to 'PSCI 0.2 compatible'
  
  Prior to r324754 we treated PSCI 0.2 and 1.0 as identical, and r324754
  extended that to include all PSCI 1.x revisions. Change the string
  emitted under bootverbose to reference '0.2 compatible' to avoid
  confusion when the system includes a later PSCI rev.
  
  Discussed with:	andrew
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/dev/psci/psci.c

Modified: head/sys/dev/psci/psci.c
==============================================================================
--- head/sys/dev/psci/psci.c	Thu Oct 19 16:36:07 2017	(r324757)
+++ head/sys/dev/psci/psci.c	Thu Oct 19 16:40:17 2017	(r324758)
@@ -495,7 +495,7 @@ psci_v0_2_init(device_t dev)
 	if ((PSCI_VER_MAJOR(version) == 0 && PSCI_VER_MINOR(version) == 2) ||
 	    PSCI_VER_MAJOR(version) == 1) {
 		if (bootverbose)
-			device_printf(dev, "PSCI version 0.2 available\n");
+			device_printf(dev, "PSCI version 0.2 compatible\n");
 
 		/*
 		 * We only register this for v0.2 since v0.1 doesn't support


More information about the svn-src-all mailing list