summaryrefslogtreecommitdiff
path: root/drivers/video/hitachi_tx18d42vm_lcd.c
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2021-09-12 00:50:48 +0300
committerAndre Przywara <andre.przywara@arm.com>2021-10-11 12:46:44 +0300
commit4d9958b6424b370555fa9fda7a0dd97b353b9797 (patch)
tree0395654cd85eaf48a9da6f6d3e2fc5e5cb8b3b39 /drivers/video/hitachi_tx18d42vm_lcd.c
parent425084610e08e344d43e0d142e72e65c9602379f (diff)
downloadu-boot-4d9958b6424b370555fa9fda7a0dd97b353b9797.tar.xz
sunxi: gpio: Remove name_to_gpio macro
This clarifies which callers must be updated to complete the DM_GPIO conversion. The only remaining caller of name_to_gpio in generic code is inside the !DM_GPIO block in cmd/gpio.c. DM_GPIO is always selected on sunxi, so that code cannot be reached. And after this commit, there are only two remaining implementations of name_to_gpio. Signed-off-by: Samuel Holland <samuel@sholland.org> Acked-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'drivers/video/hitachi_tx18d42vm_lcd.c')
-rw-r--r--drivers/video/hitachi_tx18d42vm_lcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/hitachi_tx18d42vm_lcd.c b/drivers/video/hitachi_tx18d42vm_lcd.c
index c6c8df6a96..87c4d27438 100644
--- a/drivers/video/hitachi_tx18d42vm_lcd.c
+++ b/drivers/video/hitachi_tx18d42vm_lcd.c
@@ -49,9 +49,9 @@ int hitachi_tx18d42vm_init(void)
};
int i, cs, clk, mosi, ret = 0;
- cs = name_to_gpio(CONFIG_VIDEO_LCD_SPI_CS);
- clk = name_to_gpio(CONFIG_VIDEO_LCD_SPI_SCLK);
- mosi = name_to_gpio(CONFIG_VIDEO_LCD_SPI_MOSI);
+ cs = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_SPI_CS);
+ clk = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_SPI_SCLK);
+ mosi = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_SPI_MOSI);
if (cs == -1 || clk == -1 || mosi == 1) {
printf("Error tx18d42vm spi gpio config is invalid\n");