diff options
author | Christoffer Dall <christoffer.dall@linaro.org> | 2014-05-27 05:18:17 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-05-27 09:58:49 -0400 |
commit | d6d7a95c1bdba370e2249efdecfab712c10cfc9b (patch) | |
tree | 8f2ebdaf79d503358d0bb2ef75244380a8a9192c /arch/arm/include/asm/psci.h | |
parent | 04092204bb66c4f8e17465eeee64357dd2ad2585 (diff) |
arm: Fix compile warning for psci
Commit e71246a23acbc89e9cb4ebf1558d60e65733479f changes psci_init from a
function returning a void to an int, but does not change the non
CONFIG_ARM_PSCI implementation to return a value, which causes a compile
warning. Just return 0.
Cc: Ashwin Chaugule <ashwin.chaugule@linaro.org>
Cc: Shawn Guo <shawn.guo@freescale.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/arm/include/asm/psci.h')
-rw-r--r-- | arch/arm/include/asm/psci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h index b93e34a9fdf1..c25ef3ec6d1f 100644 --- a/arch/arm/include/asm/psci.h +++ b/arch/arm/include/asm/psci.h | |||
@@ -41,7 +41,7 @@ extern struct smp_operations psci_smp_ops; | |||
41 | int psci_init(void); | 41 | int psci_init(void); |
42 | bool psci_smp_available(void); | 42 | bool psci_smp_available(void); |
43 | #else | 43 | #else |
44 | static inline int psci_init(void) { } | 44 | static inline int psci_init(void) { return 0; } |
45 | static inline bool psci_smp_available(void) { return false; } | 45 | static inline bool psci_smp_available(void) { return false; } |
46 | #endif | 46 | #endif |
47 | 47 | ||