From: Stefan Roese Date: Tue, 11 Dec 2007 12:38:19 +0000 (+0100) Subject: ppc4xx: Correct GPIO offset in gpio_config() X-Git-Tag: v2008.10-rc1~808^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9;p=platform%2Fkernel%2Fu-boot.git 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 dcf1fba..7b09a2f 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; }