From: Ben Dooks Date: Tue, 21 Jun 2016 16:31:15 +0000 (-0700) Subject: ARM: keystone: fix missing keystone.h in pm_domain.c X-Git-Tag: v4.14-rc1~2746^2~26^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=39a5cbbc0e24586fc30af9ebfc9957c00f1c9f3b;p=platform%2Fkernel%2Flinux-rpi.git ARM: keystone: fix missing keystone.h in pm_domain.c The declaration of keystone_pm_runtime_init() is not included from keystone.h in pm_domain.c. Including the file fixes the following sparse warning: arch/arm/mach-keystone/pm_domain.c:37:12: warning: symbol 'keystone_pm_runtime_init' was not declared. Should it be static? Signed-off-by: Ben Dooks Signed-off-by: Santosh Shilimkar --- diff --git a/arch/arm/mach-keystone/pm_domain.c b/arch/arm/mach-keystone/pm_domain.c index e283939..8cbb357 100644 --- a/arch/arm/mach-keystone/pm_domain.c +++ b/arch/arm/mach-keystone/pm_domain.c @@ -18,6 +18,8 @@ #include #include +#include "keystone.h" + static struct dev_pm_domain keystone_pm_domain = { .ops = { USE_PM_CLK_RUNTIME_OPS