mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
blackfin: mach-common: ints-priority: fix compile error
IRQ_PINT4/PINT5 are not defined on !CONFIG_BF60x, this patch fix it. Signed-off-by: Bob Liu <lliubbo@gmail.com>
This commit is contained in:
parent
8e2f524fd9
commit
494b794808
@ -1107,12 +1107,14 @@ static int bfin_gpio_set_wake(struct irq_data *d, unsigned int state)
|
|||||||
case 1:
|
case 1:
|
||||||
pint_irq = IRQ_PINT1;
|
pint_irq = IRQ_PINT1;
|
||||||
break;
|
break;
|
||||||
|
#ifdef CONFIG_BF60x
|
||||||
case 4:
|
case 4:
|
||||||
pint_irq = IRQ_PINT4;
|
pint_irq = IRQ_PINT4;
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
pint_irq = IRQ_PINT5;
|
pint_irq = IRQ_PINT5;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user