Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190415
b: refs/heads/master
c: 9a99d55
h: refs/heads/master
i:
  190413: 3cc629f
  190411: 18bdb4a
  190407: 1b1d21a
  190399: 4a28363
v: v3
  • Loading branch information
viresh kumar authored and Russell King committed Apr 22, 2010
1 parent 4dc0ec7 commit af67b51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 313af42b5b3ea105567e8a62b01f35a9245c3fb3
refs/heads/master: 9a99d55514d3c6bfc03e41536659d781af6998f5
6 changes: 3 additions & 3 deletions trunk/drivers/gpio/pl061.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static struct irq_chip pl061_irqchip = {

static void pl061_irq_handler(unsigned irq, struct irq_desc *desc)
{
struct list_head *chip_list = get_irq_chip_data(irq);
struct list_head *chip_list = get_irq_data(irq);
struct list_head *ptr;
struct pl061_gpio *chip;

Expand Down Expand Up @@ -297,9 +297,9 @@ static int __init pl061_probe(struct amba_device *dev, struct amba_id *id)
goto iounmap;
}
INIT_LIST_HEAD(chip_list);
set_irq_chip_data(irq, chip_list);
set_irq_data(irq, chip_list);
} else
chip_list = get_irq_chip_data(irq);
chip_list = get_irq_data(irq);
list_add(&chip->list, chip_list);

for (i = 0; i < PL061_GPIO_NR; i++) {
Expand Down

0 comments on commit af67b51

Please sign in to comment.