diff options
author | Soby Mathew <soby.mathew@arm.com> | 2016-05-03 17:11:42 +0100 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2016-07-18 17:52:15 +0100 |
commit | da554d7439b1e9b64d06dd50c6eb29bf1c952805 (patch) | |
tree | 24f9f2bd2633606a9fd18a7bc276cce18e57e87c /include/common/smcc_helpers.h | |
parent | 4c0d03907652fdf9c66a02cec9ea7137ccccd2e9 (diff) |
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
Diffstat (limited to 'include/common/smcc_helpers.h')
-rw-r--r-- | include/common/smcc_helpers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/common/smcc_helpers.h b/include/common/smcc_helpers.h index 6a07b013..6279cf23 100644 --- a/include/common/smcc_helpers.h +++ b/include/common/smcc_helpers.h @@ -119,18 +119,18 @@ * to SMC handler. These takes the offset values defined in context.h */ #define SMC_GET_GP(_h, _g) \ - read_ctx_reg(get_gpregs_ctx(_h), (_g)); + read_ctx_reg(get_gpregs_ctx(_h), (_g)) #define SMC_SET_GP(_h, _g, _v) \ - write_ctx_reg(get_gpregs_ctx(_h), (_g), (_v)); + write_ctx_reg(get_gpregs_ctx(_h), (_g), (_v)) /* * Convenience macros to access EL3 context registers using handle provided to * SMC handler. These takes the offset values defined in context.h */ #define SMC_GET_EL3(_h, _e) \ - read_ctx_reg(get_el3state_ctx(_h), (_e)); + read_ctx_reg(get_el3state_ctx(_h), (_e)) #define SMC_SET_EL3(_h, _e, _v) \ - write_ctx_reg(get_el3state_ctx(_h), (_e), (_v)); + write_ctx_reg(get_el3state_ctx(_h), (_e), (_v)) /* The macro below is used to identify a Standard Service SMC call */ #define is_std_svc_call(_fid) ((((_fid) >> FUNCID_OEN_SHIFT) & \ |