Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191754
b: refs/heads/master
c: c0fcb8d
h: refs/heads/master
v: v3
  • Loading branch information
Rabin Vincent authored and Russell King committed Mar 19, 2010
1 parent ed48f1e commit f58db60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: 3a5e854e09b77c49c8030c7dfd3a3f506571a89a
refs/heads/master: c0fcb8dba829421fe20652a376a2bedaf168238f
3 changes: 2 additions & 1 deletion trunk/arch/arm/plat-nomadik/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct nmk_gpio_chip {
struct gpio_chip chip;
void __iomem *addr;
unsigned int parent_irq;
spinlock_t *lock;
spinlock_t lock;
/* Keep track of configured edges */
u32 edge_rising;
u32 edge_falling;
Expand Down Expand Up @@ -321,6 +321,7 @@ static int __init nmk_gpio_probe(struct amba_device *dev, struct amba_id *id)
nmk_chip->addr = io_p2v(dev->res.start);
nmk_chip->chip = nmk_gpio_template;
nmk_chip->parent_irq = pdata->parent_irq;
spin_lock_init(&nmk_chip->lock);

chip = &nmk_chip->chip;
chip->base = pdata->first_gpio;
Expand Down

0 comments on commit f58db60

Please sign in to comment.