diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-07 08:01:06 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:01:06 -0600 |
commit | 7e2938beabac24e6c8baad33e254b2383dbe9490 (patch) | |
tree | dbefd5a48f5b034108c6b5b7c2138430539622b2 /arch/arm/mach-socfpga/smc_api.c | |
parent | 52835266d3e933656a217233eaf672dd9ccd7352 (diff) | |
parent | 47558a4fce629390133bc6f410a942f109165efd (diff) |
Merge branch '2024-05-06-remove-include-common_h' into next
- Merge the four series that I made to finally remove include/common.h.
For the most part, this is just removing <common.h> entirely. In a few
cases we needed to add <linux/types.h> or <time.h>. In the case of
PowerPC related code, we instead need to bring in <asm/ppc.h>.
Diffstat (limited to 'arch/arm/mach-socfpga/smc_api.c')
-rw-r--r-- | arch/arm/mach-socfpga/smc_api.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-socfpga/smc_api.c b/arch/arm/mach-socfpga/smc_api.c index 8ffc7a472b5..ebaa0b8fa17 100644 --- a/arch/arm/mach-socfpga/smc_api.c +++ b/arch/arm/mach-socfpga/smc_api.c @@ -4,10 +4,11 @@ * */ -#include <common.h> #include <asm/ptrace.h> #include <asm/system.h> +#include <linux/errno.h> #include <linux/intel-smc.h> +#include <linux/string.h> int invoke_smc(u32 func_id, u64 *args, int arg_len, u64 *ret_arg, int ret_len) { |