diff options
author | Dean Nelson <dcn@sgi.com> | 2008-09-05 10:07:20 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:53:06 -0400 |
commit | e65ef88c20d5c68bde18f559e0d0ad7d718beb28 (patch) | |
tree | 7858cb3c5aa6f32248da5efea57500610a3857b3 | |
parent | ac54a6c9371bacb86bee1db23f7d82e8685c7e17 (diff) |
irq: error missed ifndef CONFIG_HAVE_SPARSE_IRQ
An error return from create_irq_nr() is 0, but an error return from
create_irq() is -1.
Signed-off-by: Dean Nelson <dcn@sgi.com>
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | drivers/pci/htirq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/htirq.c b/drivers/pci/htirq.c index 7c5aef13fcdb..7b180e0c634e 100644 --- a/drivers/pci/htirq.c +++ b/drivers/pci/htirq.c | |||
@@ -144,7 +144,7 @@ int __ht_create_irq(struct pci_dev *dev, int idx, ht_irq_update_t *update) | |||
144 | #else | 144 | #else |
145 | irq = create_irq(); | 145 | irq = create_irq(); |
146 | #endif | 146 | #endif |
147 | if (irq == 0) { | 147 | if (irq <= 0) { |
148 | kfree(cfg); | 148 | kfree(cfg); |
149 | return -EBUSY; | 149 | return -EBUSY; |
150 | } | 150 | } |