diff options
author | Ben Dooks <ben-linux@fluff.org> | 2022-07-25 01:39:22 +0300 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-07-28 17:09:17 +0300 |
commit | fe520635ddc4377e84f78c6cf1c54393f1dfa33b (patch) | |
tree | ed74d860bac5cba323501f0495b5aa575dd77618 /arch/arm | |
parent | 3437021484dd8f71685012d47c2d2de6f020e943 (diff) | |
download | linux-fe520635ddc4377e84f78c6cf1c54393f1dfa33b.tar.xz |
ARM: 9219/1: fix undeclared soft_restart
The soft_restart() is declared in <asm/system_misc.h> so
include that to fix the following sparse warning:
arch/arm/kernel/reboot.c:78:6: warning: symbol 'soft_restart' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/kernel/reboot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/reboot.c b/arch/arm/kernel/reboot.c index 2cb943422554..3f0d5c3dae11 100644 --- a/arch/arm/kernel/reboot.c +++ b/arch/arm/kernel/reboot.c @@ -10,6 +10,7 @@ #include <asm/cacheflush.h> #include <asm/idmap.h> #include <asm/virt.h> +#include <asm/system_misc.h> #include "reboot.h" |