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

Emmanuel Vadot manu at FreeBSD.org
Fri Jul 6 17:39:49 UTC 2018


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;
 	}
 


More information about the svn-src-head mailing list