mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
blackfin: mach-common: ints-priority add irq_set_wake
Add irq_set_wake to bfin_sec_irqchip, drivers like stmmac need it. Signed-off-by: Bob Liu <lliubbo@gmail.com>
This commit is contained in:
parent
338881a504
commit
357351bb4f
1 changed files with 5 additions and 1 deletions
|
@ -496,7 +496,10 @@ static int bfin_internal_set_wake_chip(struct irq_data *d, unsigned int state)
|
|||
return bfin_internal_set_wake(d->irq, state);
|
||||
}
|
||||
#else
|
||||
# define bfin_internal_set_wake(irq, state)
|
||||
inline int bfin_internal_set_wake(unsigned int irq, unsigned int state)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
# define bfin_internal_set_wake_chip NULL
|
||||
#endif
|
||||
|
||||
|
@ -527,6 +530,7 @@ static struct irq_chip bfin_sec_irqchip = {
|
|||
.irq_eoi = bfin_sec_unmask_irq,
|
||||
.irq_disable = bfin_sec_disable,
|
||||
.irq_enable = bfin_sec_enable,
|
||||
.irq_set_wake = bfin_internal_set_wake,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue