Merge pull request #145 from gediz/gpio-base-fix

spi: fix GPIO base address
This commit is contained in:
Chen-Yu Tsai 2020-10-20 11:02:55 +08:00 committed by GitHub
commit 14ff3e360d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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