diff options
author | Tom Rini | 2024-04-30 20:42:54 -0600 |
---|---|---|
committer | Tom Rini | 2024-05-07 08:00:40 -0600 |
commit | 59ac5a21dd3beb88094bc7096c7db5b9c63d6667 (patch) | |
tree | 2d10dd0e01c72c2ce0a9272bec0f1f27b32a7542 | |
parent | 483b799b3a7c6ea477c946006ad7749fb02df35b (diff) |
board: ste: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/ste/stemmy/stemmy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ste/stemmy/stemmy.c b/board/ste/stemmy/stemmy.c index 060d562cbc9..826c002907d 100644 --- a/board/ste/stemmy/stemmy.c +++ b/board/ste/stemmy/stemmy.c @@ -2,12 +2,12 @@ /* * Copyright (C) 2019 Stephan Gerhold <stephan@gerhold.net> */ -#include <common.h> #include <env.h> #include <fdt_support.h> #include <init.h> #include <log.h> #include <stdlib.h> +#include <linux/errno.h> #include <asm/global_data.h> #include <asm/setup.h> #include <asm/system.h> |