From ae435aefbcb5064a82ba94ec0b22cfe1315b243c Mon Sep 17 00:00:00 2001 From: Ovidiu Panait Date: Sat, 1 Jan 2022 19:13:31 +0200 Subject: [PATCH] common: board_r: drop ifdefs around header includes Drop the remaining ifdefs around header includes, to fix an old TODO. Reviewed-by: Simon Glass Signed-off-by: Ovidiu Panait --- common/board_r.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/common/board_r.c b/common/board_r.c index f607ce7..60eced6 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -33,16 +33,11 @@ #include #include #include -/* TODO: can we just include all these headers whether needed or not? */ -#if defined(CONFIG_CMD_KGDB) #include -#endif #include #include #include -#ifdef CONFIG_BITBANGMII #include -#endif #include #include #include @@ -56,9 +51,7 @@ #include #include #include -#ifdef CONFIG_XEN #include -#endif #include #include #include @@ -67,9 +60,7 @@ #include #include #include -#ifdef CONFIG_EFI_SETUP_EARLY #include -#endif DECLARE_GLOBAL_DATA_PTR; -- 2.7.4