From 273481455bce585484faa4c852dba5a5ec47a66c Mon Sep 17 00:00:00 2001 From: Joakim Gebart Date: Mon, 18 May 2015 07:04:02 +0200 Subject: [PATCH] stm32l1: Replace tabs by spaces --- cpu/stm32l1/periph/gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/stm32l1/periph/gpio.c b/cpu/stm32l1/periph/gpio.c index 39d29743a3..5901373c27 100644 --- a/cpu/stm32l1/periph/gpio.c +++ b/cpu/stm32l1/periph/gpio.c @@ -554,7 +554,7 @@ void isr_exti9_5(void) #if defined(GPIO_IRQ_10) || defined(GPIO_IRQ_11) || defined(GPIO_IRQ_12) || defined(GPIO_IRQ_13) || defined(GPIO_IRQ_14) || defined(GPIO_IRQ_15) void isr_exti15_10(void) { - if (EXTI->PR & EXTI_PR_PR10) { + if (EXTI->PR & EXTI_PR_PR10) { EXTI->PR |= EXTI_PR_PR10; /* clear status bit by writing a 1 to it */ gpio_config[GPIO_IRQ_10].cb(gpio_config[GPIO_IRQ_10].arg); }