mmc: Replace printf with debug call for timeouts in the i.MX28 mxs driver
[oweals/u-boot.git] / drivers / mmc / mxsmmc.c
index 7ea47f98017ce601c101129ff8bd3c66226167c2..9414eff42bafa65331da3c0130257aadb0fe9680 100644 (file)
@@ -432,8 +432,8 @@ mxsmmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, struct mmc_data *data)
 
        /* Check command timeout */
        if (reg & SSP_STATUS_RESP_TIMEOUT) {
-               printf("MMC%d: Command %d timeout (status 0x%08x)\n",
-                      devnum, cmd->cmdidx, reg);
+               debug("MMC%d: Command %d timeout (status 0x%08x)\n",
+                     devnum, cmd->cmdidx, reg);
                return -ETIMEDOUT;
        }