diff options
author | John Otken <john@softadvances.com> | 2007-07-26 17:49:11 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-07-26 17:49:11 +0200 |
commit | d4024bb72dd81695ec099b2199eda0d27c623e62 (patch) | |
tree | 401db21bb0c6665bb10ef70ece49a1479836483d /cpu/ppc4xx/gpio.c | |
parent | 9f24a808f17fc0f37b7fb4805f734741335caecc (diff) | |
download | u-boot-imx-d4024bb72dd81695ec099b2199eda0d27c623e62.zip u-boot-imx-d4024bb72dd81695ec099b2199eda0d27c623e62.tar.gz u-boot-imx-d4024bb72dd81695ec099b2199eda0d27c623e62.tar.bz2 |
ppc4xx: Add support for AMCC 405EP Taihu board
Signed-off-by: John Otken <john@softadvances.com>
Diffstat (limited to 'cpu/ppc4xx/gpio.c')
-rw-r--r-- | cpu/ppc4xx/gpio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/ppc4xx/gpio.c b/cpu/ppc4xx/gpio.c index 0d0e273..50f2fdf 100644 --- a/cpu/ppc4xx/gpio.c +++ b/cpu/ppc4xx/gpio.c @@ -186,6 +186,7 @@ void gpio_set_chip_configuration(void) out32(GPIO0_TCR, reg); } +#ifdef GPIO1 if (gpio_core == GPIO1) { /* * Setup output value @@ -203,6 +204,7 @@ void gpio_set_chip_configuration(void) reg = in32(GPIO1_TCR) | (0x80000000 >> (i)); out32(GPIO1_TCR, reg); } +#endif /* GPIO1 */ reg = in32(GPIO_OS(core_add+offs)) & ~(GPIO_MASK >> (j*2)); |