NEORV32_GPIO: Forgotten to removed this volatile

This commit is contained in:
emb4fun 2023-02-27 12:33:32 +01:00
parent 7226a138c7
commit 0a94225495
No known key found for this signature in database
GPG key ID: F71BF3BCA38B40A7

View file

@ -1238,7 +1238,7 @@ typedef volatile struct __attribute__((packed,aligned(4))) {
#define NEORV32_GPIO_BASE (0xFFFFFFC0U)
/** GPIO module hardware access (#neorv32_gpio_t) */
#define NEORV32_GPIO ((volatile neorv32_gpio_t*) (NEORV32_GPIO_BASE))
#define NEORV32_GPIO ((neorv32_gpio_t*) (NEORV32_GPIO_BASE))
/**@}*/