diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2017-08-20 17:13:46 +0200 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2017-08-26 07:04:49 +0900 |
commit | 3f63551471b6cf72bf81e497aac9bada705b4f57 (patch) | |
tree | 005284e72f5b25689899a237db034bf53b95c19d /board/renesas | |
parent | 1c30aea5b14ff6a6f9c490865048acebccb8f30e (diff) | |
download | u-boot-3f63551471b6cf72bf81e497aac9bada705b4f57.tar.gz |
ARM: rmobile: Remove Serial SH probing from ULCB board
Drop the Serial SH bit from the board since UART now probes from DT instead.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas')
-rw-r--r-- | board/renesas/ulcb/ulcb.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/renesas/ulcb/ulcb.c b/board/renesas/ulcb/ulcb.c index e249bd27d4..6b080311d0 100644 --- a/board/renesas/ulcb/ulcb.c +++ b/board/renesas/ulcb/ulcb.c @@ -232,15 +232,3 @@ int dram_init_banksize(void) const struct rmobile_sysinfo sysinfo = { CONFIG_RCAR_BOARD_STRING }; - -static const struct sh_serial_platdata serial_platdata = { - .base = SCIF2_BASE, - .type = PORT_SCIF, - .clk = CONFIG_SH_SCIF_CLK_FREQ, - .clk_mode = INT_CLK, -}; - -U_BOOT_DEVICE(salvator_x_scif2) = { - .name = "serial_sh", - .platdata = &serial_platdata, -}; |