diff options
| author | Alexander Chuprunov <[email protected]> | 2025-09-18 12:07:05 +0300 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2025-10-27 16:56:20 +0530 |
| commit | 63aacbd7826c539a46c108d0e055db57cb335eb2 (patch) | |
| tree | 44c50dedc55609a6fa5b3e69a7d1422e57f9464d | |
| parent | 1db95da2997b80f78c4b488a731801edc8c6379b (diff) | |
lib: sbi: sbi_pmu: fixed alignment
Deleted spaces before brace in pmu_ctr_start_fw() for correct alignment.
Signed-off-by: Alexander Chuprunov <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Anup Patel <[email protected]>
| -rw-r--r-- | lib/sbi/sbi_pmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_pmu.c b/lib/sbi/sbi_pmu.c index 476b2bd9..b618be43 100644 --- a/lib/sbi/sbi_pmu.c +++ b/lib/sbi/sbi_pmu.c @@ -448,7 +448,7 @@ static int pmu_ctr_start_fw(struct sbi_pmu_hart_state *phs, !pmu_dev->fw_counter_write_value || !pmu_dev->fw_counter_start) { return SBI_EINVAL; - } + } if (ival_update) pmu_dev->fw_counter_write_value(phs->hartid, |
