Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336419
b: refs/heads/master
c: 4484d0b
h: refs/heads/master
i:
  336417: eebcd7f
  336415: 9391910
v: v3
  • Loading branch information
Axel Lin authored and Linus Walleij committed Nov 15, 2012
1 parent 40ddcaf commit 5d5c762
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: 8d1c6ef67a4530ee5dbd5038d2959a54593013b1
refs/heads/master: 4484d0b17982af8d7af2c21bcc67e47f4237ce70
6 changes: 3 additions & 3 deletions trunk/drivers/pinctrl/spear/pinctrl-spear.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ void __devinit
pmx_init_gpio_pingroup_addr(struct spear_gpio_pingroup *gpio_pingroup,
unsigned count, u16 reg)
{
int i = 0, j = 0;
int i, j;

for (; i < count; i++)
for (; j < gpio_pingroup[i].nmuxregs; j++)
for (i = 0; i < count; i++)
for (j = 0; j < gpio_pingroup[i].nmuxregs; j++)
gpio_pingroup[i].muxregs[j].reg = reg;
}

Expand Down

0 comments on commit 5d5c762

Please sign in to comment.