diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-07 10:37:09 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-07 10:37:09 +0000 |
commit | 0563e0225e6db1328ed17a0e4bd0aecb5047304a (patch) | |
tree | 8fd2eca06506a84a2de5baa4420192c535c7c74f /target | |
parent | b9d3767ada27b9177f6a7ed9f33ab2b2c8fde704 (diff) | |
download | upstream-0563e0225e6db1328ed17a0e4bd0aecb5047304a.tar.gz upstream-0563e0225e6db1328ed17a0e4bd0aecb5047304a.tar.bz2 upstream-0563e0225e6db1328ed17a0e4bd0aecb5047304a.zip |
cns3xxx: fix register for enabling MMC/SD pins
also fixes a GPIO related regression from the upgrade to 3.10
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42829
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c b/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c index 9021f3d65f..d61dad9b81 100644 --- a/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c +++ b/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c @@ -818,8 +818,7 @@ static void __init laguna_init(void) *reg |= BIT(12) | BIT(13); /* Enable MMC/SD pins */ - reg = MISC_GPIOA_PIN_ENABLE_REG; - *reg |= 0xf80; + *reg |= BIT(7) | BIT(8) | BIT(9) | BIT(10) | BIT(11); cns3xxx_pwr_clk_en(1 << PM_CLK_GATE_REG_OFFSET_SPI_PCM_I2C); cns3xxx_pwr_power_up(1 << PM_CLK_GATE_REG_OFFSET_SPI_PCM_I2C); |