diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-30 21:38:53 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-02 15:33:42 -0500 |
commit | 401d1c4f5d2d29c4bc4beaec95402ca23eb63295 (patch) | |
tree | 0122abb2a3f1ea9837eaccc6150d2dae9570388e /drivers/mmc | |
parent | fdcb93e1709ab1a2ebb562455621617c29e2099c (diff) | |
download | u-boot-401d1c4f5d2d29c4bc4beaec95402ca23eb63295.tar.gz |
common: Drop asm/global_data.h from common headerWIP/2021-02-02-drop-asm_global_data-when-unused
Move this out of the common header and include it only where needed. In
a number of cases this requires adding "struct udevice;" to avoid adding
another large header or in other cases replacing / adding missing header
files that had been pulled in, very indirectly. Finally, we have a few
cases where we did not need to include <asm/global_data.h> at all, so
remove that include.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/atmel_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/ca_dw_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/exynos_dw_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/fsl_esdhc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/fsl_esdhc_imx.c | 1 | ||||
-rw-r--r-- | drivers/mmc/ftsdc010_mci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/hi6220_dw_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/iproc_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/jz_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/msm_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/mv_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/mvebu_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/omap_hsmmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/pic32_sdhci.c | 2 | ||||
-rw-r--r-- | drivers/mmc/renesas-sdhi.c | 1 | ||||
-rw-r--r-- | drivers/mmc/s5p_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/sdhci-cadence.c | 1 | ||||
-rw-r--r-- | drivers/mmc/sh_mmcif.c | 1 | ||||
-rw-r--r-- | drivers/mmc/sh_sdhi.c | 1 | ||||
-rw-r--r-- | drivers/mmc/socfpga_dw_mmc.c | 1 | ||||
-rw-r--r-- | drivers/mmc/sti_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/tmio-common.c | 1 | ||||
-rw-r--r-- | drivers/mmc/xenon_sdhci.c | 1 |
23 files changed, 24 insertions, 0 deletions
diff --git a/drivers/mmc/atmel_sdhci.c b/drivers/mmc/atmel_sdhci.c index d7dbc23fd0..2b5ceeab94 100644 --- a/drivers/mmc/atmel_sdhci.c +++ b/drivers/mmc/atmel_sdhci.c @@ -10,6 +10,7 @@ #include <malloc.h> #include <sdhci.h> #include <asm/arch/clk.h> +#include <asm/global_data.h> #define ATMEL_SDHC_MIN_FREQ 400000 #define ATMEL_SDHC_GCK_RATE 240000000 diff --git a/drivers/mmc/ca_dw_mmc.c b/drivers/mmc/ca_dw_mmc.c index 2b79356a20..a17ed8c11c 100644 --- a/drivers/mmc/ca_dw_mmc.c +++ b/drivers/mmc/ca_dw_mmc.c @@ -7,6 +7,7 @@ #include <common.h> #include <dwmmc.h> #include <fdtdec.h> +#include <asm/global_data.h> #include <linux/libfdt.h> #include <malloc.h> #include <errno.h> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index b4ff1c3fb4..544798bb71 100644 --- a/drivers/mmc/exynos_dw_mmc.c +++ b/drivers/mmc/exynos_dw_mmc.c @@ -7,6 +7,7 @@ #include <common.h> #include <dwmmc.h> #include <fdtdec.h> +#include <asm/global_data.h> #include <linux/libfdt.h> #include <malloc.h> #include <errno.h> diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index b5f3fd134d..6014e1c5ca 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -21,6 +21,7 @@ #include <fsl_esdhc.h> #include <fdt_support.h> #include <asm/cache.h> +#include <asm/global_data.h> #include <asm/io.h> #include <dm.h> #include <dm/device_compat.h> diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c index 8ac859797f..e0e132698e 100644 --- a/drivers/mmc/fsl_esdhc_imx.c +++ b/drivers/mmc/fsl_esdhc_imx.c @@ -21,6 +21,7 @@ #include <mmc.h> #include <part.h> #include <asm/cache.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <linux/bitops.h> #include <linux/delay.h> diff --git a/drivers/mmc/ftsdc010_mci.c b/drivers/mmc/ftsdc010_mci.c index fa6181d85f..0fa037224f 100644 --- a/drivers/mmc/ftsdc010_mci.c +++ b/drivers/mmc/ftsdc010_mci.c @@ -15,6 +15,7 @@ #include <malloc.h> #include <part.h> #include <mmc.h> +#include <asm/global_data.h> #include <linux/bitops.h> #include <linux/io.h> #include <linux/errno.h> diff --git a/drivers/mmc/hi6220_dw_mmc.c b/drivers/mmc/hi6220_dw_mmc.c index bb5d0922be..2cec5b9ae3 100644 --- a/drivers/mmc/hi6220_dw_mmc.c +++ b/drivers/mmc/hi6220_dw_mmc.c @@ -10,6 +10,7 @@ #include <errno.h> #include <fdtdec.h> #include <malloc.h> +#include <asm/global_data.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/mmc/iproc_sdhci.c b/drivers/mmc/iproc_sdhci.c index f931e4b3c1..6e4f527e5d 100644 --- a/drivers/mmc/iproc_sdhci.c +++ b/drivers/mmc/iproc_sdhci.c @@ -9,6 +9,7 @@ #include <errno.h> #include <malloc.h> #include <sdhci.h> +#include <asm/global_data.h> #include <linux/delay.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/mmc/jz_mmc.c b/drivers/mmc/jz_mmc.c index ae3af3927d..61e48ee0f6 100644 --- a/drivers/mmc/jz_mmc.c +++ b/drivers/mmc/jz_mmc.c @@ -9,6 +9,7 @@ #include <common.h> #include <malloc.h> #include <mmc.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/unaligned.h> #include <errno.h> diff --git a/drivers/mmc/msm_sdhci.c b/drivers/mmc/msm_sdhci.c index bfbba46c5d..d63d7b3a2c 100644 --- a/drivers/mmc/msm_sdhci.c +++ b/drivers/mmc/msm_sdhci.c @@ -13,6 +13,7 @@ #include <malloc.h> #include <sdhci.h> #include <wait_bit.h> +#include <asm/global_data.h> #include <asm/io.h> #include <linux/bitops.h> diff --git a/drivers/mmc/mv_sdhci.c b/drivers/mmc/mv_sdhci.c index 556dd38046..2096a67f54 100644 --- a/drivers/mmc/mv_sdhci.c +++ b/drivers/mmc/mv_sdhci.c @@ -7,6 +7,7 @@ #include <dm.h> #include <malloc.h> #include <sdhci.h> +#include <asm/global_data.h> #include <linux/mbus.h> #define MVSDH_NAME "mv_sdh" diff --git a/drivers/mmc/mvebu_mmc.c b/drivers/mmc/mvebu_mmc.c index 03d5150b20..8ec1f57a1b 100644 --- a/drivers/mmc/mvebu_mmc.c +++ b/drivers/mmc/mvebu_mmc.c @@ -13,6 +13,7 @@ #include <malloc.h> #include <part.h> #include <mmc.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/cpu.h> #include <asm/arch/soc.h> diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c index 52f044e37a..da44511d98 100644 --- a/drivers/mmc/omap_hsmmc.c +++ b/drivers/mmc/omap_hsmmc.c @@ -35,6 +35,7 @@ #include <palmas.h> #endif #include <asm/cache.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/mmc_host_def.h> #ifdef CONFIG_OMAP54XX diff --git a/drivers/mmc/pic32_sdhci.c b/drivers/mmc/pic32_sdhci.c index fb37c6756c..fe555106a1 100644 --- a/drivers/mmc/pic32_sdhci.c +++ b/drivers/mmc/pic32_sdhci.c @@ -9,6 +9,8 @@ #include <dm.h> #include <sdhci.h> #include <clk.h> +#include <linux/errno.h> +#include <mach/pic32.h> struct pic32_sdhci_plat { struct mmc_config cfg; diff --git a/drivers/mmc/renesas-sdhi.c b/drivers/mmc/renesas-sdhi.c index 2acb8c6efa..9ad92648a3 100644 --- a/drivers/mmc/renesas-sdhi.c +++ b/drivers/mmc/renesas-sdhi.c @@ -11,6 +11,7 @@ #include <malloc.h> #include <mmc.h> #include <dm.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <linux/bitops.h> #include <linux/compat.h> diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c index 3cf56e0ac4..dee84263c3 100644 --- a/drivers/mmc/s5p_sdhci.c +++ b/drivers/mmc/s5p_sdhci.c @@ -10,6 +10,7 @@ #include <malloc.h> #include <sdhci.h> #include <fdtdec.h> +#include <asm/global_data.h> #include <linux/libfdt.h> #include <asm/gpio.h> #include <asm/arch/mmc.h> diff --git a/drivers/mmc/sdhci-cadence.c b/drivers/mmc/sdhci-cadence.c index 2b726c26b8..327a05ad11 100644 --- a/drivers/mmc/sdhci-cadence.c +++ b/drivers/mmc/sdhci-cadence.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <linux/bitfield.h> #include <linux/bitops.h> diff --git a/drivers/mmc/sh_mmcif.c b/drivers/mmc/sh_mmcif.c index af342f2c29..830e29cdd4 100644 --- a/drivers/mmc/sh_mmcif.c +++ b/drivers/mmc/sh_mmcif.c @@ -22,6 +22,7 @@ #include <linux/io.h> #include <linux/sizes.h> #include "sh_mmcif.h" +#include <asm/global_data.h> #define DRIVER_NAME "sh_mmcif" diff --git a/drivers/mmc/sh_sdhi.c b/drivers/mmc/sh_sdhi.c index b8865b1ca6..b2d0fac963 100644 --- a/drivers/mmc/sh_sdhi.c +++ b/drivers/mmc/sh_sdhi.c @@ -24,6 +24,7 @@ #include <linux/sizes.h> #include <asm/arch/rmobile.h> #include <asm/arch/sh_sdhi.h> +#include <asm/global_data.h> #include <clk.h> #define DRIVER_NAME "sh-sdhi" diff --git a/drivers/mmc/socfpga_dw_mmc.c b/drivers/mmc/socfpga_dw_mmc.c index aa0d3a2222..d6d2d57214 100644 --- a/drivers/mmc/socfpga_dw_mmc.c +++ b/drivers/mmc/socfpga_dw_mmc.c @@ -13,6 +13,7 @@ #include <dwmmc.h> #include <errno.h> #include <fdtdec.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <linux/intel-smc.h> #include <linux/libfdt.h> diff --git a/drivers/mmc/sti_sdhci.c b/drivers/mmc/sti_sdhci.c index 8ecd575152..6194768fd7 100644 --- a/drivers/mmc/sti_sdhci.c +++ b/drivers/mmc/sti_sdhci.c @@ -11,6 +11,7 @@ #include <reset-uclass.h> #include <sdhci.h> #include <asm/arch/sdhci.h> +#include <asm/global_data.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/mmc/tmio-common.c b/drivers/mmc/tmio-common.c index 6c0c840bbb..e9c7d3a2e0 100644 --- a/drivers/mmc/tmio-common.c +++ b/drivers/mmc/tmio-common.c @@ -10,6 +10,7 @@ #include <fdtdec.h> #include <mmc.h> #include <dm.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <dm/pinctrl.h> #include <linux/compat.h> diff --git a/drivers/mmc/xenon_sdhci.c b/drivers/mmc/xenon_sdhci.c index d635694401..e292f2903d 100644 --- a/drivers/mmc/xenon_sdhci.c +++ b/drivers/mmc/xenon_sdhci.c @@ -17,6 +17,7 @@ #include <common.h> #include <dm.h> #include <fdtdec.h> +#include <asm/global_data.h> #include <linux/bitops.h> #include <linux/delay.h> #include <linux/libfdt.h> |