diff options
author | Stefan Roese <sr@denx.de> | 2007-11-15 14:23:55 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-11-15 14:23:55 +0100 |
commit | aee747f19b460a0e9da20ff21e90fdaac1cec359 (patch) | |
tree | 25d51927229b6622f41f093f2e9ba502121041b5 /cpu/ppc4xx/cpu_init.c | |
parent | 8ada0ebf38e4073beea0309188b25d82a112a2ae (diff) | |
download | u-boot-imx-aee747f19b460a0e9da20ff21e90fdaac1cec359.zip u-boot-imx-aee747f19b460a0e9da20ff21e90fdaac1cec359.tar.gz u-boot-imx-aee747f19b460a0e9da20ff21e90fdaac1cec359.tar.bz2 |
ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
- Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
- Cleanup of the 4xx GPIO functions
- Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/cpu_init.c')
-rw-r--r-- | cpu/ppc4xx/cpu_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/ppc4xx/cpu_init.c b/cpu/ppc4xx/cpu_init.c index afb94cc..01ab523 100644 --- a/cpu/ppc4xx/cpu_init.c +++ b/cpu/ppc4xx/cpu_init.c @@ -112,7 +112,7 @@ cpu_init_f (void) unsigned long val; #endif -#if defined(CONFIG_405EP) || defined (CONFIG_405EX) +#if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && !defined(CFG_4xx_GPIO_TABLE) /* * GPIO0 setup (select GPIO or alternate function) */ @@ -144,9 +144,9 @@ cpu_init_f (void) #endif /* CONFIG_405EP */ #endif /* CONFIG_405EP */ -#if defined(CFG_440_GPIO_TABLE) +#if defined(CFG_4xx_GPIO_TABLE) gpio_set_chip_configuration(); -#endif /* CFG_440_GPIO_TABLE */ +#endif /* CFG_4xx_GPIO_TABLE */ /* * External Bus Controller (EBC) Setup |