From 6b21fd9eced5be53d39b7ec7c4fd692b5f53e5a9 Mon Sep 17 00:00:00 2001 From: Yimin Peng Date: Fri, 7 Jul 2017 17:51:10 +0800 Subject: [PATCH] scm: fix potential build error. References to the header file may cause multi definition. Change-Id: Iccac423a5906f2493b33b34fd698324138ce9bcb Signed-off-by: Yimin Peng --- include/soc/qcom/scm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/soc/qcom/scm.h b/include/soc/qcom/scm.h index ad57eda97f9d..4ced3c29e932 100644 --- a/include/soc/qcom/scm.h +++ b/include/soc/qcom/scm.h @@ -230,7 +230,7 @@ static inline int scm_io_write(phys_addr_t address, u32 val) return 0; } -inline bool scm_is_secure_device(void) +static inline bool scm_is_secure_device(void) { return false; }