Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327023
b: refs/heads/master
c: 3da23f2
h: refs/heads/master
i:
  327021: d14f1d0
  327019: bdc7b59
  327015: bab4312
  327007: a9229f9
v: v3
  • Loading branch information
Tomasz Figa authored and Kukjin Kim committed Sep 20, 2012
1 parent 7001b7f commit 59cb242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: ee2f573c4206ff3c4dbff2296c8d383d045c80a2
refs/heads/master: 3da23f27a0f6a5e44a01813a1c0a662011e5c221
4 changes: 2 additions & 2 deletions trunk/drivers/pinctrl/pinctrl-exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static void exynos_gpio_irq_mask(struct irq_data *irqd)
unsigned long mask;

mask = readl(d->virt_base + reg_mask);
mask |= ~(1 << edata->pin);
mask |= 1 << edata->pin;
writel(mask, d->virt_base + reg_mask);
}

Expand Down Expand Up @@ -290,7 +290,7 @@ static void exynos_wkup_irq_mask(struct irq_data *irqd)
unsigned long mask;

mask = readl(d->virt_base + reg_mask);
mask &= ~(1 << pin);
mask |= 1 << pin;
writel(mask, d->virt_base + reg_mask);
}

Expand Down

0 comments on commit 59cb242

Please sign in to comment.