diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-30 20:43:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:40 -0600 |
commit | c4083e0184f93cf44ca661d7d34b4f9cb48a8ffd (patch) | |
tree | 5a4a2327905d98af8f5097b0628a5db3ca17140c /board/ti/common/board_detect.c | |
parent | 1267f220e2ef8900a05517ea54565c15af3cc23f (diff) | |
download | u-boot-c4083e0184f93cf44ca661d7d34b4f9cb48a8ffd.tar.gz u-boot-c4083e0184f93cf44ca661d7d34b4f9cb48a8ffd.tar.bz2 u-boot-c4083e0184f93cf44ca661d7d34b4f9cb48a8ffd.zip |
board: ti: 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>
Diffstat (limited to 'board/ti/common/board_detect.c')
-rw-r--r-- | board/ti/common/board_detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/common/board_detect.c b/board/ti/common/board_detect.c index 644df3b0b6..ea21d48bbc 100644 --- a/board/ti/common/board_detect.c +++ b/board/ti/common/board_detect.c @@ -7,9 +7,9 @@ * Steve Kipisz */ -#include <common.h> #include <log.h> #include <net.h> +#include <linux/types.h> #include <asm/arch/hardware.h> #include <asm/omap_common.h> #include <dm/uclass.h> |