summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/fsl_esdhc_imx.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-28 20:34:57 -0700
committerSimon Glass <sjg@chromium.org>2021-01-05 12:26:35 -0700
commitbdf8fd76c0184373bbd31e6ee9a3a9430dcfc485 (patch)
treea074b2d3d36e615d376b3034e31bf1f858cc6694 /drivers/mmc/fsl_esdhc_imx.c
parent65e25bea597ccaaea756c593318bea1e574d8df1 (diff)
downloadu-boot-bdf8fd76c0184373bbd31e6ee9a3a9430dcfc485.tar.gz
u-boot-bdf8fd76c0184373bbd31e6ee9a3a9430dcfc485.tar.xz
u-boot-bdf8fd76c0184373bbd31e6ee9a3a9430dcfc485.zip
dm: Rename U_BOOT_DRIVER_ALIAS to DM_DRIVER_ALIAS
We use the U_BOOT_ prefix (i.e. U_BOOT_DRIVER) to declare a driver but in every other case we just use DM_. Update the alias macros to use the DM_ prefix. We could perhaps rename U_BOOT_DRIVER() to DM_DRIVER(), but this macro is widely used and there is at least some benefit to indicating it us a U-Boot driver, particularly for code ported from Linux. So for now, let's keep that name. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/mmc/fsl_esdhc_imx.c')
-rw-r--r--drivers/mmc/fsl_esdhc_imx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
index 34c2dceb18..c528d345cd 100644
--- a/drivers/mmc/fsl_esdhc_imx.c
+++ b/drivers/mmc/fsl_esdhc_imx.c
@@ -1711,5 +1711,5 @@ U_BOOT_DRIVER(fsl_esdhc) = {
.priv_auto = sizeof(struct fsl_esdhc_priv),
};
-U_BOOT_DRIVER_ALIAS(fsl_esdhc, fsl_imx6q_usdhc)
+DM_DRIVER_ALIAS(fsl_esdhc, fsl_imx6q_usdhc)
#endif