diff options
author | Tom Rini | 2024-04-27 08:10:58 -0600 |
---|---|---|
committer | Tom Rini | 2024-05-06 15:05:04 -0600 |
commit | 752ed0867522a68f21392a6b9d78589129248572 (patch) | |
tree | f9afa518638e79176c34af5aaf8ac36712e357b5 /include/cedit.h | |
parent | 702841b56e9113acd7dea78c432cfd186c0293f4 (diff) |
test: Remove <common.h> and add needed includes
Remove <common.h> from all "test/" files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/cedit.h')
-rw-r--r-- | include/cedit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cedit.h b/include/cedit.h index f43cafa5aa2..a31b4245247 100644 --- a/include/cedit.h +++ b/include/cedit.h @@ -7,12 +7,15 @@ #ifndef __CEDIT_H #define __CEDIT_H +#include <stdbool.h> #include <dm/ofnode_decl.h> +#include <linux/types.h> struct abuf; struct expo; struct scene; struct video_priv; +struct udevice; enum { /* size increment for writing FDT */ |