Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283165
b: refs/heads/master
c: 18e3b10
h: refs/heads/master
i:
  283163: 9638ae3
v: v3
  • Loading branch information
Michal Simek committed Jan 5, 2012
1 parent 748c6f7 commit ff38d66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 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: be3bad6f5eb7205753e0134aeb422c4d9c1d8838
refs/heads/master: 18e3b1075b1bc4a6027a6612fe70a5c81c209ec7
2 changes: 0 additions & 2 deletions trunk/arch/microblaze/include/asm/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ typedef unsigned long irq_hw_number_t;

extern unsigned int nr_irq;

#define NO_IRQ 0

struct pt_regs;
extern void do_IRQ(struct pt_regs *regs);

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/microblaze/pci/pci-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ int pci_read_irq_line(struct pci_dev *pci_dev)
line, pin);

virq = irq_create_mapping(NULL, line);
if (virq != NO_IRQ)
if (virq)
irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
} else {
pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
Expand All @@ -253,7 +253,7 @@ int pci_read_irq_line(struct pci_dev *pci_dev)
virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
oirq.size);
}
if (virq == NO_IRQ) {
if (!virq) {
pr_debug(" Failed to map !\n");
return -1;
}
Expand Down

0 comments on commit ff38d66

Please sign in to comment.