Skip to content

Commit

Permalink
sh: Use the proper accessor functions
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 433c9c6 commit a821b27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
3 changes: 1 addition & 2 deletions arch/sh/boards/mach-se/7206/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
9 changes: 2 additions & 7 deletions drivers/sh/intc/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit a821b27

Please sign in to comment.