Got it, I will fix this across other patches too.> /* Keep ST Micro busy mode if enabled */Do not hard-check the hw_designer everywhere, follow the pattern
>- datactrl |= host->datactrl_reg & MCI_ST_DPSM_BUSYMODE;
>+ if (host->hw_designer == AMBA_VENDOR_ST)
>+ datactrl |= host->datactrl_reg & MCI_ST_DPSM_BUSYMODE;
if storing special stuff in the variant data.
struct variant_data {--
u32 datactrl_mask_busymode;
(...)
static struct variant_data variant_u300 = {
.datactrl_mask_busymode = MCI_ST_DPSM_BUSYMODE,
(...)
static struct variant_data variant_nomadik = {