From: Shiji Yang Date: Sun, 17 Nov 2024 11:30:35 +0000 (+0800) Subject: ath79: lzma-loader: fix syntax error X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=98f26346cbbb45e5c0417f57846ce1783e884ea2;p=openwrt%2Fopenwrt.git ath79: lzma-loader: fix syntax error C compiler can't parse '#else if'. Fixes: f84a9f7dc095 ("ath79: add support for Huawei AP6010DN") Signed-off-by: Shiji Yang Link: https://github.com/openwrt/openwrt/pull/16989 Signed-off-by: Hauke Mehrtens --- diff --git a/target/linux/ath79/image/lzma-loader/src/board.c b/target/linux/ath79/image/lzma-loader/src/board.c index 1445108508..294ca307d5 100644 --- a/target/linux/ath79/image/lzma-loader/src/board.c +++ b/target/linux/ath79/image/lzma-loader/src/board.c @@ -209,7 +209,7 @@ static inline void huawei_ap_init(void) #if defined(CONFIG_BOARD_HUAWEI_AP5030DN) WRITEREG(gpiobase + AR934X_GPIO_REG_OUT_FUNC3, reg | (QCA955X_GPIO_OUTSEL_CLK_OBS5 << 24)); -#else if defined(CONFIG_BOARD_HUAWEI_AP6010DN) +#elif defined(CONFIG_BOARD_HUAWEI_AP6010DN) WRITEREG(gpiobase + AR934X_GPIO_REG_OUT_FUNC3, reg | (AR934X_GPIO_OUTSEL_CLK_OBS4 << 24)); #endif