diff options
author | James Hogan <james.hogan@imgtec.com> | 2011-06-29 04:29:17 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-07-20 17:21:05 -0400 |
commit | ae837fe6ddb1e4e9238191629baa08c35ed4a6bb (patch) | |
tree | f6da919d8a8729ca4ca75a797ab8a30898a5c98e /drivers/mmc | |
parent | 03e8cb534e7cc3f71a07528a44da7ce68e5b5708 (diff) |
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 <james.hogan@imgtec.com>
Acked-by: Will Newton <will.newton@imgtec.com>
Tested-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index fcff3c042f69..bf2157a0e511 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) | |||
908 | 908 | ||
909 | if (status & DW_MCI_DATA_ERROR_FLAGS) { | 909 | if (status & DW_MCI_DATA_ERROR_FLAGS) { |
910 | if (status & SDMMC_INT_DTO) { | 910 | if (status & SDMMC_INT_DTO) { |
911 | dev_err(&host->pdev->dev, | ||
912 | "data timeout error\n"); | ||
913 | data->error = -ETIMEDOUT; | 911 | data->error = -ETIMEDOUT; |
914 | } else if (status & SDMMC_INT_DCRC) { | 912 | } else if (status & SDMMC_INT_DCRC) { |
915 | dev_err(&host->pdev->dev, | ||
916 | "data CRC error\n"); | ||
917 | data->error = -EILSEQ; | 913 | data->error = -EILSEQ; |
918 | } else { | 914 | } else { |
919 | dev_err(&host->pdev->dev, | 915 | dev_err(&host->pdev->dev, |