DO NOT SUBMIT: Change error messages to trace

Change-Id: I5eebda92407ad41b751590e4a6c288a17af176b5
diff --git a/src/devices/block/drivers/aml-sdmmc/aml-sdmmc.cc b/src/devices/block/drivers/aml-sdmmc/aml-sdmmc.cc
index 7b37caa..8338afb 100644
--- a/src/devices/block/drivers/aml-sdmmc/aml-sdmmc.cc
+++ b/src/devices/block/drivers/aml-sdmmc/aml-sdmmc.cc
@@ -110,7 +110,7 @@
 
   if (rxd_err) {
     if (req->probe_tuning_cmd) {
-      AML_SDMMC_TRACE("RX Data CRC Error cmd%d, status=0x%x, RXD_ERR:%d", req->cmd_idx,
+      AML_SDMMC_ERROR("RX Data CRC Error cmd%d, status=0x%x, RXD_ERR:%d", req->cmd_idx,
                       status_irq.reg_value(), rxd_err);
     } else {
       AML_SDMMC_ERROR("RX Data CRC Error cmd%d, status=0x%x, RXD_ERR:%d", req->cmd_idx,
@@ -130,7 +130,7 @@
   }
   if (status_irq.resp_err()) {
     if (req->probe_tuning_cmd) {
-      AML_SDMMC_TRACE("Response CRC Error, cmd%d, status=0x%x", req->cmd_idx,
+      AML_SDMMC_ERROR("Response CRC Error, cmd%d, status=0x%x", req->cmd_idx,
                       status_irq.reg_value());
     } else {
       AML_SDMMC_ERROR("Response CRC Error, cmd%d, status=0x%x", req->cmd_idx,
@@ -146,7 +146,7 @@
                   (SD_SEND_IF_COND_FLAGS) != (MMC_SEND_EXT_CSD_FLAGS));
     // When mmc dev_ice is being probed with SDIO command this is an expected failure.
     if (req->probe_tuning_cmd || is_sd_cmd8) {
-      AML_SDMMC_TRACE("No response received before time limit, cmd%d, status=0x%x", req->cmd_idx,
+      AML_SDMMC_ERROR("No response received before time limit, cmd%d, status=0x%x", req->cmd_idx,
                       status_irq.reg_value());
     } else {
       AML_SDMMC_ERROR("No response received before time limit, cmd%d, status=0x%x", req->cmd_idx,
@@ -1074,6 +1074,7 @@
 }
 
 void AmlSdmmc::SetAdjDelay(uint32_t adj_delay) {
+  
   if (board_config_.version_3) {
     AmlSdmmcAdjust::Get().ReadFrom(&mmio_).set_adj_delay(adj_delay).set_adj_fixed(1).WriteTo(
         &mmio_);
@@ -1084,6 +1085,7 @@
 }
 
 void AmlSdmmc::SetDelayLines(uint32_t delay) {
+  
   if (board_config_.version_3) {
     AmlSdmmcDelay1::Get()
         .ReadFrom(&mmio_)