Skip to content
Snippets Groups Projects
Commit 3b9abdc4 authored by Stefan Roese's avatar Stefan Roese
Browse files

ppc4xx: Correct GPIO offset in gpio_config()


Thanks to Gary Jennejohn for pointing this out.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent 8809a271
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ void gpio_config(int pin, int in_out, int gpio_alt, int out_val)
}
if (pin >= GPIO_MAX/2) {
offs2 = 0x100;
offs2 = 0x4;
pin2 = (pin - GPIO_MAX/2) << 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment