aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/avr/gpio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/avr/gpio.c b/src/avr/gpio.c
index c749c4f1..d10fc2a1 100644
--- a/src/avr/gpio.c
+++ b/src/avr/gpio.c
@@ -18,7 +18,7 @@ DECL_ENUMERATION_RANGE("pin", "PA0", GPIO('A', 0), 8);
DECL_ENUMERATION_RANGE("pin", "PB0", GPIO('B', 0), 8);
DECL_ENUMERATION_RANGE("pin", "PC0", GPIO('C', 0), 8);
DECL_ENUMERATION_RANGE("pin", "PD0", GPIO('D', 0), 8);
-#ifdef CONFIG_MACH_atmega328p
+#if CONFIG_MACH_atmega328p
DECL_ENUMERATION_RANGE("pin", "PE0", GPIO('E', 0), 8);
#endif
#ifdef PINE
@@ -40,7 +40,7 @@ volatile uint8_t * const digital_regs[] PROGMEM = {
NULL,
#endif
&PINB, &PINC, &PIND,
-#ifdef CONFIG_MACH_atmega328p
+#if CONFIG_MACH_atmega328p
&_SFR_IO8(0x0C), // PINE on atmega328pb
#endif
#ifdef PINE