Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65983
b: refs/heads/master
c: 6782ea9
h: refs/heads/master
i:
  65981: f26b1f5
  65979: 3b5fda2
  65975: ad560a9
  65967: 590be58
  65951: 1d0e594
  65919: 03f4bdc
v: v3
  • Loading branch information
Michael Hennerich authored and Bryan Wu committed Jul 24, 2007
1 parent 6135644 commit c4e7f6e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: 40d63406a0dfc070fff9336c182619a0b167f165
refs/heads/master: 6782ea9ae8c2aa82dfeab84cb168126fbcbf4526
4 changes: 2 additions & 2 deletions trunk/arch/blackfin/mach-common/ints-priority-dc.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static unsigned int bf561_gpio_irq_startup(unsigned int irq)

if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {

ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;

Expand Down Expand Up @@ -261,7 +261,7 @@ static int bf561_gpio_irq_type(unsigned int irq, unsigned int type)

if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {

ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;

Expand Down
8 changes: 4 additions & 4 deletions trunk/arch/blackfin/mach-common/ints-priority-sc.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ static unsigned int bfin_gpio_irq_startup(unsigned int irq)
u16 gpionr = irq - IRQ_PF0;

if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;
}
Expand Down Expand Up @@ -377,7 +377,7 @@ static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;
}
Expand Down Expand Up @@ -587,7 +587,7 @@ static unsigned int bfin_gpio_irq_startup(unsigned int irq)
}

if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;
}
Expand Down Expand Up @@ -627,7 +627,7 @@ static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
ret = gpio_request(gpionr, NULL);
ret = gpio_request(gpionr, "IRQ");
if (ret)
return ret;
}
Expand Down

0 comments on commit c4e7f6e

Please sign in to comment.