diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-12 19:03:55 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-24 16:34:45 -0400 |
commit | 60c08dd7718364e3ab4565801e7d972aec2ee036 (patch) | |
tree | 0d0c9f7e12d73697d76cfcac686a240045273bbf /board/synopsys/hsdk/env-lib.c | |
parent | 12c00f9e8b3e7987cfc5243f5b3edbe6c9fdfdc2 (diff) |
arc: Remove common.h usage
We can remove common.h from most cases of the code here, and only a few
places need an additional header instead.
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'board/synopsys/hsdk/env-lib.c')
-rw-r--r-- | board/synopsys/hsdk/env-lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/synopsys/hsdk/env-lib.c b/board/synopsys/hsdk/env-lib.c index d85e816733..85a2249f17 100644 --- a/board/synopsys/hsdk/env-lib.c +++ b/board/synopsys/hsdk/env-lib.c @@ -7,6 +7,8 @@ #include "env-lib.h" #include <env.h> #include <log.h> +#include <vsprintf.h> +#include <linux/errno.h> #include <linux/printk.h> #define MAX_CMD_LEN 25 |