diff options
| author | Peng Fan <peng.fan@nxp.com> | 2026-02-09 09:30:17 +0800 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2026-02-17 13:50:22 -0600 |
| commit | 406982f091c76e6ce0734373426bd756f97d64e9 (patch) | |
| tree | b40faa4a7e44fb8082131f4d9c6c2be2a75e9d03 | |
| parent | 15398169c4283d50b7c578363baa4e4054e7b4fa (diff) | |
socfpga: clock_manager_s10: Add missing header files
struct udevice and u32 are used in this file. Add missing header to avoid
building break after asm/global_data.h is removed from this file.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
| -rw-r--r-- | arch/arm/mach-socfpga/clock_manager_s10.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/clock_manager_s10.c b/arch/arm/mach-socfpga/clock_manager_s10.c index 1e148947a33..d6c64e98010 100644 --- a/arch/arm/mach-socfpga/clock_manager_s10.c +++ b/arch/arm/mach-socfpga/clock_manager_s10.c @@ -4,6 +4,8 @@ * */ +#include <compiler.h> +#include <dm/device.h> #include <linux/errno.h> #include <asm/global_data.h> #include <asm/io.h> |
