diff options
Diffstat (limited to 'src/soc/qualcomm')
-rw-r--r-- | src/soc/qualcomm/sc7280/display/edp_aux.c | 8 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7280/display/edp_ctrl.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/soc/qualcomm/sc7280/display/edp_aux.c b/src/soc/qualcomm/sc7280/display/edp_aux.c index 4e5f7da124..2d2821b382 100644 --- a/src/soc/qualcomm/sc7280/display/edp_aux.c +++ b/src/soc/qualcomm/sc7280/display/edp_aux.c @@ -32,13 +32,13 @@ static void edp_wait_for_aux_done(void) u32 intr_status = 0; if (!wait_ms(100, read32(&edp_auxclk->status) & EDP_AUX_INTERRUPT)) { - printk(BIOS_ERR, "ERROR: AUX SEND not acknowledged\n"); + printk(BIOS_ERR, "AUX SEND not acknowledged\n"); return; } intr_status = read32(&edp_auxclk->status); if (!(intr_status & AUX_INTR_I2C_DONE)) { - printk(BIOS_ERR, "ERROR: AUX command failed, status = %#x\n", intr_status); + printk(BIOS_ERR, "AUX command failed, status = %#x\n", intr_status); return; } @@ -176,7 +176,7 @@ int edp_read_edid(struct edid *out) err = edp_aux_transfer(EDID_I2C_ADDR, DP_AUX_I2C_READ, edid, EDID_LENGTH); if (err < EDID_LENGTH) { - printk(BIOS_ERR, "ERROR: Failed to read EDID. :%d\n", err); + printk(BIOS_ERR, "Failed to read EDID. :%d\n", err); return err; } @@ -196,7 +196,7 @@ int edp_read_edid(struct edid *out) } if (decode_edid(edid, edid_size, out) != EDID_CONFORMANT) { - printk(BIOS_ERR, "ERROR: Failed to decode EDID.\n"); + printk(BIOS_ERR, "Failed to decode EDID.\n"); return CB_ERR; } diff --git a/src/soc/qualcomm/sc7280/display/edp_ctrl.c b/src/soc/qualcomm/sc7280/display/edp_ctrl.c index e9254cc9e8..1455cace90 100644 --- a/src/soc/qualcomm/sc7280/display/edp_ctrl.c +++ b/src/soc/qualcomm/sc7280/display/edp_ctrl.c @@ -1375,7 +1375,7 @@ static int edp_ctrl_on(struct edp_ctrl *ctrl, struct edid *edid, uint8_t *dpcd) if (dpcd[DP_DPCD_REV] >= 0x11) { ret = edp_aux_transfer(DP_SET_POWER, DP_AUX_NATIVE_READ, &value, 1); if (ret < 0) { - printk(BIOS_ERR, "ERROR: edp native read failure\n"); + printk(BIOS_ERR, "edp native read failure\n"); return -1; } @@ -1384,7 +1384,7 @@ static int edp_ctrl_on(struct edp_ctrl *ctrl, struct edid *edid, uint8_t *dpcd) ret = edp_aux_transfer(DP_SET_POWER, DP_AUX_NATIVE_WRITE, &value, 1); if (ret < 0) { - printk(BIOS_ERR, "ERROR: edp native read failure\n"); + printk(BIOS_ERR, "edp native read failure\n"); return -1; } @@ -1401,7 +1401,7 @@ static int edp_ctrl_on(struct edp_ctrl *ctrl, struct edid *edid, uint8_t *dpcd) /* Start link training */ ret = edp_ctrl_training(ctrl, edid, dpcd); if (ret != EDP_TRAIN_SUCCESS) { - printk(BIOS_ERR, "ERROR: edp training failure\n"); + printk(BIOS_ERR, "edp training failure\n"); return -1; } |