From: Rob Herring Date: Wed, 29 Mar 2023 15:52:05 +0000 (-0500) Subject: riscv: Add explicit include for cpu.h X-Git-Tag: v6.6.7~2994^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0418108d7e1299b3fb696de96981c3bc05a040f;p=platform%2Fkernel%2Flinux-starfive.git riscv: Add explicit include for cpu.h Removing the include of cpu.h from of_device.h (included by of_platform.h) causes an error in setup.c: arch/riscv/kernel/setup.c:313:22: error: arithmetic on a pointer to an incomplete type 'typeof(struct cpu)' (aka 'struct cpu') The of_platform.h header is not necessary either, so it can be dropped. Link: https://lore.kernel.org/r/20230329-dt-cpu-header-cleanups-v1-8-581e2605fe47@kernel.org Signed-off-by: Rob Herring --- diff --git a/arch/riscv/kernel/setup.c b/arch/riscv/kernel/setup.c index 376d282..dcfa4b6 100644 --- a/arch/riscv/kernel/setup.c +++ b/arch/riscv/kernel/setup.c @@ -8,6 +8,7 @@ * Nick Kossifidis */ +#include #include #include #include @@ -15,7 +16,6 @@ #include #include #include -#include #include #include #include