Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNazım Gediz Aydındoğmuş <gedizaydindogmus@gmail.com>2020-10-19 22:13:13 +0300
committerNazım Gediz Aydındoğmuş <gedizaydindogmus@gmail.com>2020-10-19 22:13:13 +0300
commit4e3eeb5d6dfa34e5503daf50bff9969493ca18cb (patch)
tree877fe76e5c869c73d0cc17b8952701a8352376b0
parent3fb85399e281a0c3546a41fbf7fbb53a918a9ae9 (diff)
spi: fix GPIO base address
Resolve typo for GPIO base address for SoCs other than V831. Signed-off-by: Nazım Gediz Aydındoğmuş <gedizaydindogmus@gmail.com>
-rw-r--r--fel-spiflash.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}