diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2016-06-07 20:03:47 +0100 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2016-06-16 11:24:19 +0200 |
commit | e9d50248d6d92957160bd2616a7e738a746b8231 (patch) | |
tree | 6ae07045df7c360a42582c193c6cfd77092fcec9 /arch/arm/mach-mvebu/cpu-reset.c | |
parent | 43043a55b27f4a1f249f43a863402d645786c9bc (diff) | |
download | blackbird-obmc-linux-e9d50248d6d92957160bd2616a7e738a746b8231.tar.gz blackbird-obmc-linux-e9d50248d6d92957160bd2616a7e738a746b8231.zip |
mvebu: fix missing include of common.h in cpu-reset.c
The mvebu_cpu_reset_deassert() is missing the definition for
it, so include common.h where it is defined to fix the warning:
arch/arm/mach-mvebu/cpu-reset.c:25:5: warning: symbol 'mvebu_cpu_reset_deassert' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-mvebu/cpu-reset.c')
-rw-r--r-- | arch/arm/mach-mvebu/cpu-reset.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/cpu-reset.c b/arch/arm/mach-mvebu/cpu-reset.c index 4a2cadd6b48e..f33a31c6aff8 100644 --- a/arch/arm/mach-mvebu/cpu-reset.c +++ b/arch/arm/mach-mvebu/cpu-reset.c @@ -16,6 +16,8 @@ #include <linux/io.h> #include <linux/resource.h> +#include "common.h" + static void __iomem *cpu_reset_base; static size_t cpu_reset_size; |