diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:31:29 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:56 -0600 |
commit | 5771d4eed64b7e064bcd9678443085a0cd4d8caf (patch) | |
tree | 2feabbfc967503a3db0c41826626a4b77c9f8987 | |
parent | 8f9f759d2b97f40bd01e6c5f29760f0593c81296 (diff) | |
download | u-boot-5771d4eed64b7e064bcd9678443085a0cd4d8caf.zip u-boot-5771d4eed64b7e064bcd9678443085a0cd4d8caf.tar.gz u-boot-5771d4eed64b7e064bcd9678443085a0cd4d8caf.tar.bz2 |
ufs: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/ufs/cdns-platform.c | 1 | ||||
-rw-r--r-- | drivers/ufs/ti-j721e-ufs.c | 1 | ||||
-rw-r--r-- | drivers/ufs/ufs-pci.c | 1 | ||||
-rw-r--r-- | drivers/ufs/ufs-uclass.c | 1 | ||||
-rw-r--r-- | drivers/ufs/ufs.c | 1 | ||||
-rw-r--r-- | drivers/ufs/ufs.h | 1 |
6 files changed, 1 insertions, 5 deletions
diff --git a/drivers/ufs/cdns-platform.c b/drivers/ufs/cdns-platform.c index d1f3469..510a6a6 100644 --- a/drivers/ufs/cdns-platform.c +++ b/drivers/ufs/cdns-platform.c @@ -6,7 +6,6 @@ */ #include <clk.h> -#include <common.h> #include <dm.h> #include <ufs.h> #include <asm/io.h> diff --git a/drivers/ufs/ti-j721e-ufs.c b/drivers/ufs/ti-j721e-ufs.c index 1860e0d..c5c0861 100644 --- a/drivers/ufs/ti-j721e-ufs.c +++ b/drivers/ufs/ti-j721e-ufs.c @@ -5,7 +5,6 @@ #include <asm/io.h> #include <clk.h> -#include <common.h> #include <dm.h> #include <dm/device_compat.h> #include <linux/bitops.h> diff --git a/drivers/ufs/ufs-pci.c b/drivers/ufs/ufs-pci.c index ad41358..871f3f5 100644 --- a/drivers/ufs/ufs-pci.c +++ b/drivers/ufs/ufs-pci.c @@ -4,7 +4,6 @@ * Author: Bin Meng <bmeng@tinylab.org> */ -#include <common.h> #include <dm.h> #include <errno.h> #include <pci.h> diff --git a/drivers/ufs/ufs-uclass.c b/drivers/ufs/ufs-uclass.c index 92fcdf4..334bfcf 100644 --- a/drivers/ufs/ufs-uclass.c +++ b/drivers/ufs/ufs-uclass.c @@ -7,7 +7,6 @@ #define LOG_CATEGORY UCLASS_UFS -#include <common.h> #include "ufs.h" #include <dm.h> diff --git a/drivers/ufs/ufs.c b/drivers/ufs/ufs.c index e4400f3..be64bf9 100644 --- a/drivers/ufs/ufs.c +++ b/drivers/ufs/ufs.c @@ -10,7 +10,6 @@ #include <bouncebuf.h> #include <charset.h> -#include <common.h> #include <dm.h> #include <log.h> #include <dm/device_compat.h> diff --git a/drivers/ufs/ufs.h b/drivers/ufs/ufs.h index 816a5ce..43042c2 100644 --- a/drivers/ufs/ufs.h +++ b/drivers/ufs/ufs.h @@ -2,6 +2,7 @@ #ifndef __UFS_H #define __UFS_H +#include <linux/types.h> #include "unipro.h" struct udevice; |