All other messages printed in sdhci.c use the host's device to prefix the message, except this one debug message here that uses the card's instead. Unify this by using the host device everywhere. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- drivers/mci/sdhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mci/sdhci.c b/drivers/mci/sdhci.c index ba1e07e966ae..da6c2ddb5879 100644 --- a/drivers/mci/sdhci.c +++ b/drivers/mci/sdhci.c @@ -170,7 +170,7 @@ static int __sdhci_execute_tuning(struct sdhci *host, u32 opcode) } - dev_dbg(&host->mci->mci->dev, "Tuning timeout, falling back to fixed sampling clock\n"); + dev_dbg(host->mci->hw_dev, "Tuning timeout, falling back to fixed sampling clock\n"); sdhci_reset_tuning(host); return -EAGAIN; } -- 2.39.2