summaryrefslogtreecommitdiffstats
path: root/drivers/spi/mxs_spi.c
diff options
context:
space:
mode:
authorWalter Lozano <walter.lozano@collabora.com>2020-06-25 01:10:06 -0300
committerSimon Glass <sjg@chromium.org>2020-07-09 18:57:22 -0600
commitaddf358bac1d2bd087b77be7d4d95a2a2e5dfcaf (patch)
tree8f235b174eb05d46eeb532a5caa90c7e2c00cf74 /drivers/spi/mxs_spi.c
parentace16e88d97d64a1c999a690f46123cf73fafa7c (diff)
downloadu-boot-addf358bac1d2bd087b77be7d4d95a2a2e5dfcaf.tar.gz
u-boot-addf358bac1d2bd087b77be7d4d95a2a2e5dfcaf.tar.xz
u-boot-addf358bac1d2bd087b77be7d4d95a2a2e5dfcaf.zip
core: add support for U_BOOT_DRIVER_ALIAS
Currently when using OF_PLATDATA the binding between devices and drivers is done trying to match the compatible string in the node with a driver name. However, usually a single driver supports multiple compatible strings which causes that only devices which its compatible string matches a driver name get bound. To overcome this issue, this patch adds the U_BOOT_DRIVER_ALIAS macro, which generates no code at all, but allows an easy way to declare driver name aliases. Thanks to this, dtoc could be improve to look for the driver name based on its alias when it populates the U_BOOT_DEVICE entry. Signed-off-by: Walter Lozano <walter.lozano@collabora.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/spi/mxs_spi.c')
-rw-r--r--drivers/spi/mxs_spi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/mxs_spi.c b/drivers/spi/mxs_spi.c
index 4b8e242501..3c1af839c0 100644
--- a/drivers/spi/mxs_spi.c
+++ b/drivers/spi/mxs_spi.c
@@ -498,3 +498,5 @@ U_BOOT_DRIVER(fsl_imx23_spi) = {
.priv_auto_alloc_size = sizeof(struct mxs_spi_priv),
.probe = mxs_spi_probe,
};
+
+U_BOOT_DRIVER_ALIAS(fsl_imx23_spi, fsl_imx28_spi)