Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Aug 2018 13:56:49 +0000 (UTC)
From:      Luiz Otavio O Souza <loos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r337752 - head/sys/dev/psci
Message-ID:  <201808141356.w7EDunUn002260@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: loos
Date: Tue Aug 14 13:56:49 2018
New Revision: 337752
URL: https://svnweb.freebsd.org/changeset/base/337752

Log:
  Fix a typo on the PSCI smc call wrapper.
  
  Looks good from:	andrew
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Modified:
  head/sys/dev/psci/psci_arm.S
  head/sys/dev/psci/psci_arm64.S

Modified: head/sys/dev/psci/psci_arm.S
==============================================================================
--- head/sys/dev/psci/psci_arm.S	Tue Aug 14 13:56:42 2018	(r337751)
+++ head/sys/dev/psci/psci_arm.S	Tue Aug 14 13:56:49 2018	(r337752)
@@ -45,4 +45,4 @@ END(psci_hvc_despatch)
 ENTRY(psci_smc_despatch)
 	smc	#0
 	RET
-END(psci_hvc_despatch)
+END(psci_smc_despatch)

Modified: head/sys/dev/psci/psci_arm64.S
==============================================================================
--- head/sys/dev/psci/psci_arm64.S	Tue Aug 14 13:56:42 2018	(r337751)
+++ head/sys/dev/psci/psci_arm64.S	Tue Aug 14 13:56:49 2018	(r337752)
@@ -46,4 +46,4 @@ END(psci_hvc_despatch)
 ENTRY(psci_smc_despatch)
 	smc	#0
 	ret
-END(psci_hvc_despatch)
+END(psci_smc_despatch)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808141356.w7EDunUn002260>