Date: Fri, 6 Jul 2018 17:39:48 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336037 - head/sys/dev/psci Message-ID: <201807061739.w66HdmHB012598@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: manu Date: Fri Jul 6 17:39:48 2018 New Revision: 336037 URL: https://svnweb.freebsd.org/changeset/base/336037 Log: psci: Add \n at the end of printf Add a \n at the end of the printf if no PSCI function was found otherwise it mess up the console log. Modified: head/sys/dev/psci/psci.c Modified: head/sys/dev/psci/psci.c ============================================================================== --- head/sys/dev/psci/psci.c Fri Jul 6 16:51:35 2018 (r336036) +++ head/sys/dev/psci/psci.c Fri Jul 6 17:39:48 2018 (r336037) @@ -118,7 +118,7 @@ psci_init(void *dummy) psci_callfn_t new_callfn; if (psci_find_callfn(&new_callfn) != PSCI_RETVAL_SUCCESS) { - printf("No PSCI/SMCCC call function found"); + printf("No PSCI/SMCCC call function found\n"); return; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807061739.w66HdmHB012598>