From da554d7439b1e9b64d06dd50c6eb29bf1c952805 Mon Sep 17 00:00:00 2001 From: Soby Mathew Date: Tue, 3 May 2016 17:11:42 +0100 Subject: Fix coding guideline warnings This patch fixes some coding guideline warnings reported by the checkpatch script. Only files related to upcoming feature development have been fixed. Change-Id: I26fbce75c02ed62f00493ed6c106fe7c863ddbc5 --- include/bl31/cpu_data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/bl31/cpu_data.h') diff --git a/include/bl31/cpu_data.h b/include/bl31/cpu_data.h index 3a1db5c7..4fc801bf 100644 --- a/include/bl31/cpu_data.h +++ b/include/bl31/cpu_data.h @@ -123,10 +123,10 @@ void init_cpu_ops(void); #define get_cpu_data_by_index(_ix, _m) _cpu_data_by_index(_ix)->_m #define set_cpu_data_by_index(_ix, _m, _v) _cpu_data_by_index(_ix)->_m = _v -#define flush_cpu_data(_m) flush_dcache_range((uintptr_t) \ +#define flush_cpu_data(_m) flush_dcache_range((uintptr_t) \ &(_cpu_data()->_m), \ sizeof(_cpu_data()->_m)) -#define inv_cpu_data(_m) inv_dcache_range((uintptr_t) \ +#define inv_cpu_data(_m) inv_dcache_range((uintptr_t) \ &(_cpu_data()->_m), \ sizeof(_cpu_data()->_m)) #define flush_cpu_data_by_index(_ix, _m) \ -- cgit