From 2f0a78640fa19580307bec74278f42e61817823e Mon Sep 17 00:00:00 2001 From: krzysztof-cabaj Date: Thu, 11 Apr 2024 19:19:58 +0200 Subject: [PATCH] cpu/esp8266: fix issue found by static tests --- cpu/esp8266/include/periph_cpu.h | 35 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/cpu/esp8266/include/periph_cpu.h b/cpu/esp8266/include/periph_cpu.h index 4a336037cb82..654fa8e57801 100644 --- a/cpu/esp8266/include/periph_cpu.h +++ b/cpu/esp8266/include/periph_cpu.h @@ -96,28 +96,27 @@ typedef enum { * @name Predefined GPIO names * @{ */ -#define GPIO0 (GPIO_PIN(PORT_GPIO,0)) -#define GPIO1 (GPIO_PIN(PORT_GPIO,1)) -#define GPIO2 (GPIO_PIN(PORT_GPIO,2)) -#define GPIO3 (GPIO_PIN(PORT_GPIO,3)) -#define GPIO4 (GPIO_PIN(PORT_GPIO,4)) -#define GPIO5 (GPIO_PIN(PORT_GPIO,5)) -#define GPIO6 (GPIO_PIN(PORT_GPIO,6)) -#define GPIO7 (GPIO_PIN(PORT_GPIO,7)) -#define GPIO8 (GPIO_PIN(PORT_GPIO,8)) -#define GPIO9 (GPIO_PIN(PORT_GPIO,9)) -#define GPIO10 (GPIO_PIN(PORT_GPIO,10)) -#define GPIO11 (GPIO_PIN(PORT_GPIO,11)) -#define GPIO12 (GPIO_PIN(PORT_GPIO,12)) -#define GPIO13 (GPIO_PIN(PORT_GPIO,13)) -#define GPIO14 (GPIO_PIN(PORT_GPIO,14)) -#define GPIO15 (GPIO_PIN(PORT_GPIO,15)) -#define GPIO16 (GPIO_PIN(PORT_GPIO,16)) +#define GPIO0 (GPIO_PIN(PORT_GPIO, 0)) +#define GPIO1 (GPIO_PIN(PORT_GPIO, 1)) +#define GPIO2 (GPIO_PIN(PORT_GPIO, 2)) +#define GPIO3 (GPIO_PIN(PORT_GPIO, 3)) +#define GPIO4 (GPIO_PIN(PORT_GPIO, 4)) +#define GPIO5 (GPIO_PIN(PORT_GPIO, 5)) +#define GPIO6 (GPIO_PIN(PORT_GPIO, 6)) +#define GPIO7 (GPIO_PIN(PORT_GPIO, 7)) +#define GPIO8 (GPIO_PIN(PORT_GPIO, 8)) +#define GPIO9 (GPIO_PIN(PORT_GPIO, 9)) +#define GPIO10 (GPIO_PIN(PORT_GPIO, 10)) +#define GPIO11 (GPIO_PIN(PORT_GPIO, 11)) +#define GPIO12 (GPIO_PIN(PORT_GPIO, 12)) +#define GPIO13 (GPIO_PIN(PORT_GPIO, 13)) +#define GPIO14 (GPIO_PIN(PORT_GPIO, 14)) +#define GPIO15 (GPIO_PIN(PORT_GPIO, 15)) +#define GPIO16 (GPIO_PIN(PORT_GPIO, 16)) /** @} */ /** @} */ - /** * @name I2C configuration *