From: Ben Dooks Date: Tue, 7 Jun 2016 19:03:47 +0000 (+0100) Subject: mvebu: fix missing include of common.h in cpu-reset.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e9d50248d6d92957160bd2616a7e738a746b8231;p=linux-beck.git 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 Signed-off-by: Gregory CLEMENT --- 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 #include +#include "common.h" + static void __iomem *cpu_reset_base; static size_t cpu_reset_size;