diff options
author | Michal Simek <michal.simek@xilinx.com> | 2015-12-01 14:29:34 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-12-07 10:14:29 +0100 |
commit | 6bf87dacd9d2d4962d32781c99ce891bde2b284f (patch) | |
tree | f22762123c570984de25c6beddef04127ba17145 /drivers/serial | |
parent | d9ae52c8f081e30cfceafc0ddb7f29d4ecd36d00 (diff) | |
download | u-boot-imx-6bf87dacd9d2d4962d32781c99ce891bde2b284f.zip u-boot-imx-6bf87dacd9d2d4962d32781c99ce891bde2b284f.tar.gz u-boot-imx-6bf87dacd9d2d4962d32781c99ce891bde2b284f.tar.bz2 |
serial: zynq: Fix incorrect reference to s5p driver
Remove this c&p error from s5p driver.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/Kconfig | 2 | ||||
-rw-r--r-- | drivers/serial/serial_zynq.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 82ad90d..1fc287e 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -95,7 +95,7 @@ config DEBUG_UART_S5P config DEBUG_UART_ZYNQ bool "Xilinx Zynq" help - Select this to enable a debug UART using the serial_s5p driver. You + Select this to enable a debug UART using the serial_zynq driver. You will need to provide parameters to make this work. The driver will be available until the real driver-model serial is running. diff --git a/drivers/serial/serial_zynq.c b/drivers/serial/serial_zynq.c index 88bebed..6807f0f 100644 --- a/drivers/serial/serial_zynq.c +++ b/drivers/serial/serial_zynq.c @@ -180,7 +180,7 @@ static const struct udevice_id zynq_serial_ids[] = { { } }; -U_BOOT_DRIVER(serial_s5p) = { +U_BOOT_DRIVER(serial_zynq) = { .name = "serial_zynq", .id = UCLASS_SERIAL, .of_match = zynq_serial_ids, |