Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243289
b: refs/heads/master
c: cf0d6b7
h: refs/heads/master
i:
  243287: 71bc8de
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 77830af commit 54256a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fdea77b88ea19525cce3b850f9183286b8a554e0
refs/heads/master: cf0d6b76c11b565f8d8b7d527d17b9f82eb3b3a5
8 changes: 0 additions & 8 deletions trunk/arch/arm/include/asm/hw_irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ static inline void ack_bad_irq(int irq)
irq_err_count++;
}

/*
* Obsolete inline function for calling irq descriptor handlers.
*/
static inline void desc_handle_irq(unsigned int irq, struct irq_desc *desc)
{
desc->handle_irq(irq, desc);
}

void set_irq_flags(unsigned int irq, unsigned int flags);

#define IRQF_VALID (1 << 0)
Expand Down
5 changes: 2 additions & 3 deletions trunk/arch/arm/mach-dove/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ static void pmu_irq_handler(unsigned int irq, struct irq_desc *desc)
if (!(cause & (1 << irq)))
continue;
irq = pmu_to_irq(irq);
desc = irq_desc + irq;
desc_handle_irq(irq, desc);
generic_handle_irq(irq);
}
}

Expand Down Expand Up @@ -124,7 +123,7 @@ void __init dove_init_irq(void)
for (i = IRQ_DOVE_PMU_START; i < NR_IRQS; i++) {
set_irq_chip(i, &pmu_irq_chip);
set_irq_handler(i, handle_level_irq);
irq_desc[i].status |= IRQ_LEVEL;
irq_set_status_flags(i, IRQ_LEVEL);
set_irq_flags(i, IRQF_VALID);
}
set_irq_chained_handler(IRQ_DOVE_PMU, pmu_irq_handler);
Expand Down

0 comments on commit 54256a5

Please sign in to comment.