From: Stefan Roese Date: Tue, 11 Dec 2007 12:38:19 +0000 (+0100) Subject: ppc4xx: Correct GPIO offset in gpio_config() X-Git-Tag: v1.3.2-rc1~102^2~60 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9;p=u-boot ppc4xx: Correct GPIO offset in gpio_config() Thanks to Gary Jennejohn for pointing this out. Signed-off-by: Stefan Roese --- diff --git a/cpu/ppc4xx/gpio.c b/cpu/ppc4xx/gpio.c index dcf1fba838..7b09a2f7d3 100644 --- a/cpu/ppc4xx/gpio.c +++ b/cpu/ppc4xx/gpio.c @@ -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; }