From: James Hogan Date: Wed, 29 Jun 2011 08:29:17 +0000 (+0100) Subject: mmc: dw_mmc: remove unnecessary error messages X-Git-Tag: v3.1-rc1~321^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae837fe6ddb1e4e9238191629baa08c35ed4a6bb;p=profile%2Fivi%2Fkernel-x86-ivi.git mmc: dw_mmc: remove unnecessary error messages Remove error messages for timeout and CRC failure, since the error code already indicates the problem. Signed-off-by: James Hogan Acked-by: Will Newton Tested-by: Jaehoon Chung Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index fcff3c0..bf2157a 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -908,12 +908,8 @@ static void dw_mci_tasklet_func(unsigned long priv) if (status & DW_MCI_DATA_ERROR_FLAGS) { if (status & SDMMC_INT_DTO) { - dev_err(&host->pdev->dev, - "data timeout error\n"); data->error = -ETIMEDOUT; } else if (status & SDMMC_INT_DCRC) { - dev_err(&host->pdev->dev, - "data CRC error\n"); data->error = -EILSEQ; } else { dev_err(&host->pdev->dev,