diff --git a/lib/utils/sys/atcsmu.c b/lib/utils/sys/atcsmu.c index 676c91f4..2cba0eb7 100644 --- a/lib/utils/sys/atcsmu.c +++ b/lib/utils/sys/atcsmu.c @@ -37,17 +37,15 @@ inline bool smu_support_sleep_mode(struct smu_data *smu, u32 sleep_mode, switch (sleep_mode) { case LIGHTSLEEP_MODE: if (EXTRACT_FIELD(pcs_cfg, PCS_CFG_LIGHT_SLEEP) == 0) { - sbi_printf( - "SMU: hart%d (PCS%d) does not support light sleep mode\n", - hartid, hartid + 3); + sbi_printf("SMU: hart%d (PCS%d) does not support light sleep mode\n", + hartid, hartid + 3); return false; } break; case DEEPSLEEP_MODE: if (EXTRACT_FIELD(pcs_cfg, PCS_CFG_DEEP_SLEEP) == 0) { - sbi_printf( - "SMU: hart%d (PCS%d) does not support deep sleep mode\n", - hartid, hartid + 3); + sbi_printf("SMU: hart%d (PCS%d) does not support deep sleep mode\n", + hartid, hartid + 3); return false; } break; @@ -83,9 +81,8 @@ inline int smu_set_reset_vector(struct smu_data *smu, ulong wakeup_addr, reset_vector = ((u64)vec_hi << 32) | vec_lo; if (reset_vector != (u64)wakeup_addr) { - sbi_printf( - "hart%d (PCS%d): Failed to program the reset vector.\n", - hartid, hartid + 3); + sbi_printf("hart%d (PCS%d): Failed to program the reset vector.\n", + hartid, hartid + 3); return SBI_EFAIL; } else return 0;