Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284800
b: refs/heads/master
c: f2ab2ba
h: refs/heads/master
v: v3
  • Loading branch information
Rob Herring committed Jan 4, 2012
1 parent f4d0467 commit 3bb2008
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: dece904d74800d109f1bb06b55758169b1bcc140
refs/heads/master: f2ab2ba09e081fbce068c0adc205ad3f25a3b626
8 changes: 4 additions & 4 deletions trunk/drivers/gpio/gpio-pl061.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct pl061_gpio {
spinlock_t irq_lock; /* IRQ registers */

void __iomem *base;
unsigned irq_base;
int irq_base;
struct gpio_chip gc;
};

Expand Down Expand Up @@ -119,7 +119,7 @@ static int pl061_to_irq(struct gpio_chip *gc, unsigned offset)
{
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);

if (chip->irq_base == NO_IRQ)
if (chip->irq_base <= 0)
return -EINVAL;

return chip->irq_base + offset;
Expand Down Expand Up @@ -250,7 +250,7 @@ static int pl061_probe(struct amba_device *dev, const struct amba_id *id)
chip->irq_base = pdata->irq_base;
} else if (dev->dev.of_node) {
chip->gc.base = -1;
chip->irq_base = NO_IRQ;
chip->irq_base = 0;
} else {
ret = -ENODEV;
goto free_mem;
Expand Down Expand Up @@ -290,7 +290,7 @@ static int pl061_probe(struct amba_device *dev, const struct amba_id *id)
* irq_chip support
*/

if (chip->irq_base == NO_IRQ)
if (chip->irq_base <= 0)
return 0;

writeb(0, chip->base + GPIOIE); /* disable irqs */
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/amba/pl061.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct pl061_platform_data {
unsigned gpio_base;

/* number of the first IRQ.
* If the IRQ functionality in not desired this must be set to NO_IRQ.
* If the IRQ functionality in not desired this must be set to 0.
*/
unsigned irq_base;

Expand Down

0 comments on commit 3bb2008

Please sign in to comment.