Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42171
b: refs/heads/master
c: 5414c6b
h: refs/heads/master
i:
  42169: 261a981
  42167: 591a0bc
v: v3
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Oct 25, 2006
1 parent 9a6809d commit a35369d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: a0f467261ae041864414103b8dd6fc4487a3c7de
refs/heads/master: 5414c6be57dd02e089c3eba1f5134f441733d013
6 changes: 5 additions & 1 deletion trunk/arch/powerpc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,10 +648,14 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);

void irq_dispose_mapping(unsigned int virq)
{
struct irq_host *host = irq_map[virq].host;
struct irq_host *host;
irq_hw_number_t hwirq;
unsigned long flags;

if (virq == NO_IRQ)
return;

host = irq_map[virq].host;
WARN_ON (host == NULL);
if (host == NULL)
return;
Expand Down

0 comments on commit a35369d

Please sign in to comment.