use "nicer" function names

This commit is contained in:
Stefan Lankes 2011-10-10 06:23:00 +02:00
parent 8f4349ee51
commit 8551a9ea9a
2 changed files with 3 additions and 3 deletions

View file

@ -234,7 +234,7 @@ void irq_handler(struct state *s)
/* This is a blank function pointer */ /* This is a blank function pointer */
void (*handler) (struct state * s); 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 * Find out if we have a custom handler to run for this

View file

@ -200,7 +200,7 @@ uint32_t get_highest_priority(void);
*/ */
void reschedule(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 #ifdef CONFIG_ROCKCREEK
if (irq != 124) if (irq != 124)
@ -213,7 +213,7 @@ static inline void check_workqueues_with_irq(int irq)
static inline void check_workqueues(void) static inline void check_workqueues(void)
{ {
// call with invalid interrupt number // call with invalid interrupt number
check_workqueues_with_irq(-1); check_workqueues_in_irqhandler(-1);
} }
#ifdef __cplusplus #ifdef __cplusplus