rockchip: serial: move driver alias to serial_rockchip.c

The Rockchip uart DT nodes have "snps,dw-apb-uart" as
fall back string. The driver ns16550.c has CONFIG_IS_ENABLED(OF_REAL)
as condition to of_match and does not copy dtplat data.
For TPL/SPL the driver serial_rockchip.c
is used. Move driver alias to correct driver.

Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
Johan Jonker 2022-04-09 18:55:11 +02:00 committed by Kever Yang
parent 728489753c
commit 04ee76c988
2 changed files with 2 additions and 2 deletions

View file

@ -624,8 +624,6 @@ U_BOOT_DRIVER(ns16550_serial) = {
#endif
};
DM_DRIVER_ALIAS(ns16550_serial, rockchip_rk3328_uart)
DM_DRIVER_ALIAS(ns16550_serial, rockchip_rk3368_uart)
DM_DRIVER_ALIAS(ns16550_serial, ti_da830_uart)
#endif
#endif /* SERIAL_PRESENT */

View file

@ -52,3 +52,5 @@ U_BOOT_DRIVER(rockchip_rk3288_uart) = {
};
DM_DRIVER_ALIAS(rockchip_rk3288_uart, rockchip_rk3066_uart)
DM_DRIVER_ALIAS(rockchip_rk3288_uart, rockchip_rk3188_uart)
DM_DRIVER_ALIAS(rockchip_rk3288_uart, rockchip_rk3328_uart)
DM_DRIVER_ALIAS(rockchip_rk3288_uart, rockchip_rk3368_uart)