use "nicer" function names
This commit is contained in:
parent
8f4349ee51
commit
8551a9ea9a
2 changed files with 3 additions and 3 deletions
|
@ -234,7 +234,7 @@ void irq_handler(struct state *s)
|
|||
/* This is a blank function pointer */
|
||||
void (*handler) (struct state * s);
|
||||
|
||||
check_workqueues_with_irq(s->int_no);
|
||||
check_workqueues_in_irqhandler(s->int_no);
|
||||
|
||||
/*
|
||||
* Find out if we have a custom handler to run for this
|
||||
|
|
|
@ -200,7 +200,7 @@ uint32_t get_highest_priority(void);
|
|||
*/
|
||||
void reschedule(void);
|
||||
|
||||
static inline void check_workqueues_with_irq(int irq)
|
||||
static inline void check_workqueues_in_irqhandler(int irq)
|
||||
{
|
||||
#ifdef CONFIG_ROCKCREEK
|
||||
if (irq != 124)
|
||||
|
@ -213,7 +213,7 @@ static inline void check_workqueues_with_irq(int irq)
|
|||
static inline void check_workqueues(void)
|
||||
{
|
||||
// call with invalid interrupt number
|
||||
check_workqueues_with_irq(-1);
|
||||
check_workqueues_in_irqhandler(-1);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Reference in a new issue