diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-19 10:15:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-03 22:19:54 -0400 |
commit | 98eb4ce592d9109b53a75f1f0ff4cc470a597f1b (patch) | |
tree | 530558448c4f15c5763d4e015ed640acbb170dc7 /drivers/ufs/cdns-platform.c | |
parent | 4a953b1f7e94f757799c9e6e4066976e92f41fd9 (diff) | |
download | u-boot-98eb4ce592d9109b53a75f1f0ff4cc470a597f1b.tar.gz |
ufs: Drop dm.h header file
This header file should not be included in other header files. Remove it
and use a forward declaration instead.
Also drop asm/io.h
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/ufs/cdns-platform.c')
-rw-r--r-- | drivers/ufs/cdns-platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ufs/cdns-platform.c b/drivers/ufs/cdns-platform.c index 1a7bb7bed8..bad1bf7de5 100644 --- a/drivers/ufs/cdns-platform.c +++ b/drivers/ufs/cdns-platform.c @@ -9,6 +9,7 @@ #include <common.h> #include <dm.h> #include <ufs.h> +#include <asm/io.h> #include <dm/device_compat.h> #include <linux/bitops.h> #include <linux/err.h> |