summaryrefslogtreecommitdiff
path: root/env/env.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-04-27 08:11:03 -0600
committerTom Rini <trini@konsulko.com>2024-05-06 15:05:04 -0600
commit0f92fa4560335f04858bfc9881e0bc6bbb756b3f (patch)
tree4322d4da2d2ea85698a241208b69b8aa892cab4c /env/env.c
parentc4b646d43608500145b3934c9db2ee82aab3a837 (diff)
env: Remove <common.h> and add needed includes
Remove <common.h> from all "env/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env/env.c')
-rw-r--r--env/env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/env/env.c b/env/env.c
index bae3f6482ae..bcc189e14db 100644
--- a/env/env.c
+++ b/env/env.c
@@ -4,13 +4,13 @@
* Written by Simon Glass <sjg@chromium.org>
*/
-#include <common.h>
#include <env.h>
#include <env_internal.h>
#include <log.h>
#include <asm/global_data.h>
#include <linux/bitops.h>
#include <linux/bug.h>
+#include <linux/errno.h>
DECLARE_GLOBAL_DATA_PTR;