aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2007-12-17 16:01:51 +0000
committerGabor Juhos <juhosg@openwrt.org>2007-12-17 16:01:51 +0000
commit418b0361ea21e3aa350cdf9c3c07618e6c59c2e1 (patch)
tree47fd6a673a9a1d2cb8f3ebd734ba1faf865e2ba1 /target
parent12295e7c0dbfec6832f9724d22753cd2bd34d15a (diff)
downloadupstream-418b0361ea21e3aa350cdf9c3c07618e6c59c2e1.tar.gz
upstream-418b0361ea21e3aa350cdf9c3c07618e6c59c2e1.tar.bz2
upstream-418b0361ea21e3aa350cdf9c3c07618e6c59c2e1.zip
remove invalid GPIO definitions for the RB153
SVN-Revision: 9789
Diffstat (limited to 'target')
-rw-r--r--target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c23
1 files changed, 5 insertions, 18 deletions
diff --git a/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c b/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
index 744c82f15a..8846545e57 100644
--- a/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
+++ b/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
@@ -61,9 +61,6 @@
#define RB150_NAND_WRITE(v) \
writeb((v), (void __iomem *)KSEG1ADDR(RB150_NAND_BASE))
-#define RB153_GPIO_CF_RDY ADM5120_GPIO_P1L1
-#define RB153_GPIO_CF_WT ADM5120_GPIO_P0L0
-
/*--------------------------------------------------------------------------*/
static struct adm5120_pci_irq rb1xx_pci_irqs[] __initdata = {
@@ -242,20 +239,6 @@ static void __init rb1xx_flash_setup(void)
adm5120_nand_data.chip.options = NAND_NO_AUTOINCR;
}
-static void __init rb153_cf_setup(void)
-{
- /* enable CSX1:INTX1 on GPIO[3:4] for the CF slot */
- adm5120_gpio_csx1_enable();
- /* enable the wait state pin GPIO[0] for external I/O control */
- adm5120_gpio_ew_enable();
-
- gpio_request(RB153_GPIO_CF_RDY, "cf-ready");
- gpio_direction_input(RB153_GPIO_CF_RDY);
- gpio_request(RB153_GPIO_CF_WT, "cf-wait");
- gpio_direction_output(RB153_GPIO_CF_WT, 1);
- gpio_direction_input(RB153_GPIO_CF_WT);
-}
-
static void __init rb1xx_setup(void)
{
/* enable NAND flash interface */
@@ -294,7 +277,11 @@ static void __init rb150_setup(void)
static void __init rb153_setup(void)
{
- rb153_cf_setup();
+ /* enable CSX1:INTX1 on GPIO[3:4] for the CF slot */
+ adm5120_gpio_csx1_enable();
+ /* enable the wait state pin GPIO[0] for external I/O control */
+ adm5120_gpio_ew_enable();
+
rb1xx_setup();
}