1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

stm32l1: Replace tabs by spaces

This commit is contained in:
Joakim Gebart 2015-05-18 07:04:02 +02:00
parent 6000b29440
commit 273481455b

View File

@ -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);
}