If CONFIG_MMC_SDHCI_SDMA is enabled but the HW could not support it,
we no longer error out. Instead we do not enable it in the host.
Change the output from printf to debug as this isn't an error but only
additional information now.
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
if ((caps & SDHCI_CAN_DO_SDMA)) {
host->flags |= USE_SDMA;
} else {
- printf("%s: Your controller doesn't support SDMA!!\n",
- __func__);
+ debug("%s: Your controller doesn't support SDMA!!\n",
+ __func__);
}
#endif
#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)