summaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2014-06-24 16:48:31 +0100
committerdanh-arm <dan.handley@arm.com>2014-06-24 16:48:31 +0100
commite73af8ac6849607281d5880d4c05798fe00b5d24 (patch)
tree84761275dfb8a07fc75bf0affea1d041697aa7ec /include/lib
parent9d302ed22f6990cbb3f720bf42893b2a0d332b7d (diff)
parent4f2104ff20753d78af0058e3ca5e9e042cd707af (diff)
Merge pull request #152 from jcastillo-arm/jc/tf-issues/073-v2
Remove all checkpatch errors from codebase
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/aarch64/arch_helpers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lib/aarch64/arch_helpers.h b/include/lib/aarch64/arch_helpers.h
index 673e897..6ba37c2 100644
--- a/include/lib/aarch64/arch_helpers.h
+++ b/include/lib/aarch64/arch_helpers.h
@@ -85,14 +85,14 @@ static inline void write_ ## _name(const uint64_t v) \
/* Define function for simple system instruction */
#define DEFINE_SYSOP_FUNC(_op) \
-static inline void _op() \
+static inline void _op(void) \
{ \
__asm__ (#_op); \
}
/* Define function for system instruction with type specifier */
#define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \
-static inline void _op ## _type() \
+static inline void _op ## _type(void) \
{ \
__asm__ (#_op " " #_type); \
}