Date: Thu, 19 Oct 2017 16:40:17 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324758 - head/sys/dev/psci Message-ID: <201710191640.v9JGeHgI035637@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710191640.v9JGeHgI035637>