mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
sh: Use the proper accessor functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
433c9c67c5
commit
a821b2793e
@ -92,9 +92,8 @@ static void eoi_se7206_irq(struct irq_data *data)
|
||||
{
|
||||
unsigned short sts0,sts1;
|
||||
unsigned int irq = data->irq;
|
||||
struct irq_desc *desc = irq_to_desc(irq);
|
||||
|
||||
if (!(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
|
||||
if (!irqd_irq_disabled(data) && !irqd_irq_inprogress(data))
|
||||
enable_se7206_irq(data);
|
||||
/* FPGA isr clear */
|
||||
sts0 = __raw_readw(INTSTS0);
|
||||
|
@ -387,19 +387,16 @@ static int intc_suspend(void)
|
||||
/* enable wakeup irqs belonging to this intc controller */
|
||||
for_each_active_irq(irq) {
|
||||
struct irq_data *data;
|
||||
struct irq_desc *desc;
|
||||
struct irq_chip *chip;
|
||||
|
||||
data = irq_get_irq_data(irq);
|
||||
chip = irq_data_get_irq_chip(data);
|
||||
if (chip != &d->chip)
|
||||
continue;
|
||||
desc = irq_to_desc(irq);
|
||||
if ((desc->status & IRQ_WAKEUP))
|
||||
if (irqd_is_wakeup_set(data))
|
||||
chip->irq_enable(data);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -412,7 +409,6 @@ static void intc_resume(void)
|
||||
|
||||
for_each_active_irq(irq) {
|
||||
struct irq_data *data;
|
||||
struct irq_desc *desc;
|
||||
struct irq_chip *chip;
|
||||
|
||||
data = irq_get_irq_data(irq);
|
||||
@ -423,8 +419,7 @@ static void intc_resume(void)
|
||||
*/
|
||||
if (chip != &d->chip)
|
||||
continue;
|
||||
desc = irq_to_desc(irq);
|
||||
if (desc->status & IRQ_DISABLED)
|
||||
if (irqd_irq_disabled(data))
|
||||
chip->irq_disable(data);
|
||||
else
|
||||
chip->irq_enable(data);
|
||||
|
Loading…
Reference in New Issue
Block a user