ppc4xx: Correct GPIO offset in gpio_config()

Thanks to Gary Jennejohn for pointing this out.

Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
Stefan Roese 2007-12-11 13:38:19 +01:00
parent 8809a2713b
commit 3b9abdc448

View file

@ -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;
}