diff options
author | Stefan Roese <sr@denx.de> | 2007-12-11 12:38:19 (GMT) |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-12-11 12:38:19 (GMT) |
commit | 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9 (patch) | |
tree | a00bd8cd5c12239ab3508e6151fb1988a3805744 /cpu/ppc4xx | |
parent | 8809a2713b1ceaf3da55d9d785470294f15de06a (diff) | |
download | u-boot-fsl-qoriq-3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9.tar.xz |
ppc4xx: Correct GPIO offset in gpio_config()
Thanks to Gary Jennejohn for pointing this out.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx')
-rw-r--r-- | cpu/ppc4xx/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |