On Thu, Nov 12, 2020 at 11:40:11AM -0800, Eric Biggers wrote: > diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig > index 31481c9fcc2ec..2ede2c86f173b 100644 > --- a/drivers/mmc/host/Kconfig > +++ b/drivers/mmc/host/Kconfig > @@ -544,6 +544,7 @@ config MMC_SDHCI_MSM > depends on MMC_SDHCI_PLTFM > select MMC_SDHCI_IO_ACCESSORS > select MMC_CQHCI > + select QCOM_SCM if MMC_CRYPTO > help > This selects the Secure Digital Host Controller Interface (SDHCI) > support present in Qualcomm SOCs. The controller supports The kernel test robot reported linkage errors caused by QCOM_SCM being selected without its dependency (ARM || ARM64). I'll probably fix this by doing: select QCOM_SCM if MMC_CRYPTO && ARCH_QCOM - Eric