diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-12-16 08:17:40 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-12-16 08:17:40 +0000 |
commit | 728c2c6cff021ca4559923894e715144cd9f3772 (patch) | |
tree | 159d7e9cf823a255d8441df3586241d2180baa9e /target | |
parent | 852e0f33db34921fbce8718b778b1041deebe5d1 (diff) | |
download | upstream-728c2c6cff021ca4559923894e715144cd9f3772.tar.gz upstream-728c2c6cff021ca4559923894e715144cd9f3772.tar.bz2 upstream-728c2c6cff021ca4559923894e715144cd9f3772.zip |
ar71xx: rb95x: nuke rb95x_gpio_init
Set up the chipselect GPIO directly in rb95x_nand_init
instead.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39087
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c index f59c14c53f..1e5c477e3b 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c @@ -170,6 +170,8 @@ static int rb95x_nand_scan_fixup(struct mtd_info *mtd) void __init rb95x_nand_init(void) { + gpio_request_one(RB95X_GPIO_NAND_NCE, GPIOF_OUT_INIT_HIGH, "NAND nCE"); + ath79_nfc_set_scan_fixup(rb95x_nand_scan_fixup); ath79_nfc_set_parts(rb95x_nand_partitions, ARRAY_SIZE(rb95x_nand_partitions)); @@ -178,14 +180,8 @@ void __init rb95x_nand_init(void) ath79_register_nfc(); } -void __init rb95x_gpio_init(void) -{ - gpio_request_one(RB95X_GPIO_NAND_NCE, GPIOF_OUT_INIT_HIGH, "NAND nCE"); -} - static void __init rb95x_setup(void) { - rb95x_gpio_init(); rb95x_nand_init(); ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 | |