mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
Merge pull request #1151 from JoelHutton/jh/MISRA-Mandatory
Change sizeof to use type of struct not function
This commit is contained in:
@@ -141,17 +141,17 @@ void init_cpu_ops(void);
|
||||
#define set_cpu_data(_m, _v) _cpu_data()->_m = _v
|
||||
#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
|
||||
|
||||
/* ((cpu_data_t *)0)->_m is a dummy to get the sizeof the struct member _m */
|
||||
#define flush_cpu_data(_m) flush_dcache_range((uintptr_t) \
|
||||
&(_cpu_data()->_m), \
|
||||
sizeof(_cpu_data()->_m))
|
||||
&(_cpu_data()->_m), \
|
||||
sizeof(((cpu_data_t *)0)->_m))
|
||||
#define inv_cpu_data(_m) inv_dcache_range((uintptr_t) \
|
||||
&(_cpu_data()->_m), \
|
||||
sizeof(_cpu_data()->_m))
|
||||
&(_cpu_data()->_m), \
|
||||
sizeof(((cpu_data_t *)0)->_m))
|
||||
#define flush_cpu_data_by_index(_ix, _m) \
|
||||
flush_dcache_range((uintptr_t) \
|
||||
&(_cpu_data_by_index(_ix)->_m), \
|
||||
sizeof(_cpu_data_by_index(_ix)->_m))
|
||||
sizeof(((cpu_data_t *)0)->_m))
|
||||
|
||||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
Reference in New Issue
Block a user