Commit b4a343e5 authored by Heiko Stuebner's avatar Heiko Stuebner Committed by Kukjin Kim

ARM: S3C24XX: Modify s3c_irq_wake to use the hwirq property

This gets rid of the use of static irq mappings there.
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent d8fdec16
...@@ -30,18 +30,18 @@ ...@@ -30,18 +30,18 @@
* set bit to 1 in allow bitfield to enable the wakeup settings on it * set bit to 1 in allow bitfield to enable the wakeup settings on it
*/ */
unsigned long s3c_irqwake_intallow = 1L << (IRQ_RTC - IRQ_EINT0) | 0xfL; unsigned long s3c_irqwake_intallow = 1L << 30 | 0xfL;
unsigned long s3c_irqwake_eintallow = 0x0000fff0L; unsigned long s3c_irqwake_eintallow = 0x0000fff0L;
int s3c_irq_wake(struct irq_data *data, unsigned int state) int s3c_irq_wake(struct irq_data *data, unsigned int state)
{ {
unsigned long irqbit = 1 << (data->irq - IRQ_EINT0); unsigned long irqbit = 1 << data->hwirq;
if (!(s3c_irqwake_intallow & irqbit)) if (!(s3c_irqwake_intallow & irqbit))
return -ENOENT; return -ENOENT;
printk(KERN_INFO "wake %s for irq %d\n", pr_info("wake %s for hwirq %lu\n",
state ? "enabled" : "disabled", data->irq); state ? "enabled" : "disabled", data->hwirq);
if (!state) if (!state)
s3c_irqwake_intmask |= irqbit; s3c_irqwake_intmask |= irqbit;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment