diff options
author | Tom Rini <trini@konsulko.com> | 2025-05-21 16:51:19 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-02 17:26:16 -0600 |
commit | d81b57a3cc881569d18014c0a8806e163066fd77 (patch) | |
tree | 408c1da14ee546c93a03c8db690424c5952424e8 /common/board_r.c | |
parent | 43d76dc7df600b10cbf70753750bf87de098b210 (diff) |
include/ide.h: Cleanup usage
At this point in time, <ide.h> provides the IDE_BUS macro and the
function prototype for ide_set_reset, which is used with IDE_RESET. The
only files which should include this header are the ones that either use
that macro or that function. Remove <blk.h> from <ide.h> and remove
<ide.h> from places which do not need it.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/board_r.c b/common/board_r.c index b90a4d9ff69..a1183f0811d 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -36,7 +36,6 @@ #include <env.h> #include <env_internal.h> #include <fdtdec.h> -#include <ide.h> #include <init.h> #include <initcall.h> #include <kgdb.h> |