summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2007-12-11 13:38:19 +0100
committerStefan Roese <sr@denx.de>2007-12-11 13:38:19 +0100
commit3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9 (patch)
treea00bd8cd5c12239ab3508e6151fb1988a3805744
parent8809a2713b1ceaf3da55d9d785470294f15de06a (diff)
downloadtalos-obmc-uboot-3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9.tar.gz
talos-obmc-uboot-3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9.zip
ppc4xx: Correct GPIO offset in gpio_config()
Thanks to Gary Jennejohn for pointing this out. Signed-off-by: Stefan Roese <sr@denx.de>
-rw-r--r--cpu/ppc4xx/gpio.c2
1 files changed, 1 insertions, 1 deletions
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;
}
OpenPOWER on IntegriCloud