diff options
Diffstat (limited to 'src/commonlib/storage')
-rw-r--r-- | src/commonlib/storage/sd_mmc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commonlib/storage/sd_mmc.h b/src/commonlib/storage/sd_mmc.h index 9f6c077ab1..411a4a3052 100644 --- a/src/commonlib/storage/sd_mmc.h +++ b/src/commonlib/storage/sd_mmc.h @@ -71,7 +71,7 @@ int sd_set_partition(struct storage_media *media, if (CONFIG(SDHC_TRACE)) \ printk(BIOS_DEBUG, format); \ } while (0) -#define sdhc_error(format...) printk(BIOS_ERR, "ERROR: " format) +#define sdhc_error(format...) printk(BIOS_ERR, format) /* Card/device debug functions */ #define sd_mmc_debug(format...) \ @@ -84,6 +84,6 @@ int sd_set_partition(struct storage_media *media, if (CONFIG(SD_MMC_TRACE)) \ printk(BIOS_DEBUG, format); \ } while (0) -#define sd_mmc_error(format...) printk(BIOS_ERR, "ERROR: " format) +#define sd_mmc_error(format...) printk(BIOS_ERR, format) #endif /* __COMMONLIB_STORAGE_SD_MMC_H__ */ |