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>
This commit is contained in:
Nazım Gediz Aydındoğmuş 2020-10-19 22:13:13 +03:00
parent 3fb85399e2
commit 4e3eeb5d6d

View File

@ -125,7 +125,7 @@ static uint32_t gpio_base(feldev_handle *dev)
case 0x1817: /* V831 */
return 0x0300B000;
default:
return 0x01C28000;
return 0x01C20800;
}
}