iPod Classic: fix typos / cosmetic

Change-Id: Ic6552dea4b300032875097ef0b885a4ae059f4bc
This commit is contained in:
Cástor Muñoz 2016-05-26 09:59:44 +02:00
parent 9e284c11b1
commit 28920ec5cc
6 changed files with 21 additions and 19 deletions

View file

@ -170,7 +170,7 @@ void eint_unregister(struct eint_handler *h)
}
/* ISR */
void ICODE_ATTR eint_handler(int group)
static void ICODE_ATTR eint_handler(int group)
{
int i;
uint32_t ints;
@ -195,7 +195,7 @@ void ICODE_ATTR eint_handler(int group)
EIC_INTLEVEL(group) ^= bit; /* swap level */
if (h->isr)
h->isr(h); /* exec GPIO handler */
h->isr(h); /* exec app handler */
}
}
}