diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2018-06-20 10:02:50 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2018-06-20 10:02:50 +0000 |
commit | 95c4b3c7355301a8930fcc566c89967b54f99b04 (patch) | |
tree | 97c234f89ebac3ab9f06f97dac0444a508087a68 | |
parent | 7ffbcfe281b5c61e790b6c5ceb78517b888254b7 (diff) |
Notes
-rw-r--r-- | sys/dev/psci/smccc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/psci/smccc.h b/sys/dev/psci/smccc.h index 25de6631d618..1047ba86055c 100644 --- a/sys/dev/psci/smccc.h +++ b/sys/dev/psci/smccc.h @@ -54,11 +54,11 @@ * These are documented in the document ARM DEN 0070A. */ #define SMCCC_VERSION \ - SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_64BIT_CALL, 0, 0) + SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_32BIT_CALL, 0, 0) #define SMCCC_ARCH_FEATURES \ - SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_64BIT_CALL, 0, 1) + SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_32BIT_CALL, 0, 1) #define SMCCC_ARCH_WORKAROUND_1 \ - SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_64BIT_CALL, 0, 0x8000) + SMCCC_FUNC_ID(SMCCC_FAST_CALL, SMCCC_32BIT_CALL, 0, 0x8000) /* The return values from ARM DEN 0070A. */ #define SMCCC_RET_SUCCESS 0 |