From 4e3eeb5d6dfa34e5503daf50bff9969493ca18cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Naz=C4=B1m=20Gediz=20Ayd=C4=B1ndo=C4=9Fmu=C5=9F?= Date: Mon, 19 Oct 2020 22:13:13 +0300 Subject: [PATCH] spi: fix GPIO base address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve typo for GPIO base address for SoCs other than V831. Signed-off-by: Nazım Gediz Aydındoğmuş --- fel-spiflash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fel-spiflash.c b/fel-spiflash.c index 467c504..eef3c4f 100644 --- a/fel-spiflash.c +++ b/fel-spiflash.c @@ -125,7 +125,7 @@ static uint32_t gpio_base(feldev_handle *dev) case 0x1817: /* V831 */ return 0x0300B000; default: - return 0x01C28000; + return 0x01C20800; } }