From af3c61718cc10b0fedd7a18b2072c5ea90f17b6d Mon Sep 17 00:00:00 2001 From: Aes64X <47932152+Aes64X@users.noreply.github.com> Date: Tue, 10 Mar 2020 00:34:13 +0800 Subject: [PATCH] Update mach-hiveap-121.c (#3693) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 照抄官方主线,用于修复AeroHive AP-121 千兆有线丢包问题,在我的设备上测试通过。估计很少人用这玩意。 --- target/linux/ar71xx/files/arch/mips/ath79/mach-hiveap-121.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-hiveap-121.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-hiveap-121.c index 363d73dd5..5cbb2054f 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-hiveap-121.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-hiveap-121.c @@ -111,7 +111,7 @@ static void __init hiveap_121_setup(void) ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev; ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII; ath79_eth0_data.phy_mask = BIT(HIVEAP_121_LAN_PHYADDR); - ath79_eth0_pll_data.pll_1000 = 0x0e000000; + ath79_eth0_pll_data.pll_1000 = 0x06000000; ath79_eth0_pll_data.pll_100 = 0x00000101; ath79_eth0_pll_data.pll_10 = 0x00001313; ath79_register_eth(0);