From: Andrew Yong Date: Mon, 21 Nov 2016 16:53:00 +0000 (+0800) Subject: ramips: fix wrong check for MT7621AT X-Git-Tag: v17.01.0-rc1~764 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=fe43d90d93c27851d60d08f250ee1770ec393f0b;p=openwrt%2Fopenwrt.git ramips: fix wrong check for MT7621AT fix in sdhci Use ralink_soc == MT762X_SOC_MT7621AT instead of CONFIG_SOC_MT7621 which is wrong and breaks builds on mt7620a-similar platforms (MT7621, MT7688) Signed-off-by: Andrew Yong --- diff --git a/target/linux/ramips/patches-4.4/0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch b/target/linux/ramips/patches-4.4/0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch index 348b563c0c..6905c380bc 100644 --- a/target/linux/ramips/patches-4.4/0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch +++ b/target/linux/ramips/patches-4.4/0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch @@ -3906,7 +3906,7 @@ Signed-off-by: John Crispin + host->mrq = mrq; + + if (msdc_do_request(mmc,mrq)) { -+ if(host->hw->flags & MSDC_REMOVABLE && CONFIG_SOC_MT7621 && mrq->data && mrq->data->error) { ++ if(host->hw->flags & MSDC_REMOVABLE && ralink_soc == MT762X_SOC_MT7621AT && mrq->data && mrq->data->error) { + msdc_tune_request(mmc,mrq); + } + }