diff options
author | Greg Ungerer <gerg@uclinux.org> | 2012-04-17 14:17:04 +1000 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2012-05-20 21:21:51 +1000 |
commit | 60e26cfd0bd4c1ee682c8c50378e650823ce6d2f (patch) | |
tree | d5830e8c1b7ebcd2dc9666d5a9125d90c8c194c8 /arch/m68k/platform/5249/config.c | |
parent | 045f8c4af4f8cdfddf00a2482573d638cbc7a863 (diff) |
m68knommu: simplify the ColdFire 5249 GPIO struct setup
The GPIO data struct setup is now the only remaining code in the platform
gpio.c file. So move it to the platform config.c code and remove the gpio.c
file.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Steven King <sfking@fdwdc.com>
Diffstat (limited to 'arch/m68k/platform/5249/config.c')
-rw-r--r-- | arch/m68k/platform/5249/config.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/m68k/platform/5249/config.c b/arch/m68k/platform/5249/config.c index 300e729a58d..fdfa1edfd1a 100644 --- a/arch/m68k/platform/5249/config.c +++ b/arch/m68k/platform/5249/config.c @@ -16,6 +16,16 @@ #include <asm/machdep.h> #include <asm/coldfire.h> #include <asm/mcfsim.h> +#include <asm/mcfgpio.h> + +/***************************************************************************/ + +struct mcf_gpio_chip mcf_gpio_chips[] = { + MCFGPS(GPIO0, 0, 32, MCFSIM2_GPIOENABLE, MCFSIM2_GPIOWRITE, MCFSIM2_GPIOREAD), + MCFGPS(GPIO1, 32, 32, MCFSIM2_GPIO1ENABLE, MCFSIM2_GPIO1WRITE, MCFSIM2_GPIO1READ), +}; + +unsigned int mcf_gpio_chips_size = ARRAY_SIZE(mcf_gpio_chips); /***************************************************************************/ |