Commit b2ae4969 authored by Thomas Richter's avatar Thomas Richter Committed by Alexander Gordeev
Browse files

s390/cpum_sf: remove parameter in call to pr_err



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: default avatarThomas Richter <tmricht@linux.ibm.com>
Acked-by: default avatarHeiko Carstens <hca@linux.ibm.com>
Signed-off-by: default avatarAlexander Gordeev <agordeev@linux.ibm.com>
parent eeeff534
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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;
	}