s390/cpum_sf: remove parameter in call to pr_err
authorThomas Richter <tmricht@linux.ibm.com>
Thu, 23 Mar 2023 14:14:35 +0000 (15:14 +0100)
committerAlexander Gordeev <agordeev@linux.ibm.com>
Tue, 4 Jul 2023 05:45:18 +0000 (07:45 +0200)
The op argument is hardcoded in the parameter list of function pr_err.
Make the op code part of the text printed by pr_err.
No functional change.

Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
arch/s390/kernel/perf_cpum_sf.c

index f7fe2ec..920bc78 100644 (file)
@@ -1021,8 +1021,7 @@ static void cpumsf_pmu_enable(struct pmu *pmu)
        err = lsctl(&cpuhw->lsctl);
        if (err) {
                cpuhw->flags &= ~PMU_F_ENABLED;
-               pr_err("Loading sampling controls failed: op %i err %i\n",
-                       1, err);
+               pr_err("Loading sampling controls failed: op 1 err %i\n", err);
                return;
        }
 
@@ -1056,8 +1055,7 @@ static void cpumsf_pmu_disable(struct pmu *pmu)
 
        err = lsctl(&inactive);
        if (err) {
-               pr_err("Loading sampling controls failed: op %i err %i\n",
-                       2, err);
+               pr_err("Loading sampling controls failed: op 2 err %i\n", err);
                return;
        }