diff options
Diffstat (limited to 'arch/s390/kernel/perf_cpum_cf.c')
| -rw-r--r-- | arch/s390/kernel/perf_cpum_cf.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/perf_cpum_cf.c b/arch/s390/kernel/perf_cpum_cf.c index 46405086479..cb019f429e8 100644 --- a/arch/s390/kernel/perf_cpum_cf.c +++ b/arch/s390/kernel/perf_cpum_cf.c @@ -178,7 +178,7 @@ static void cpumf_pmu_enable(struct pmu *pmu)  	err = lcctl(cpuhw->state);  	if (err) {  		pr_err("Enabling the performance measuring unit " -		       "failed with rc=%lx\n", err); +		       "failed with rc=%x\n", err);  		return;  	} @@ -203,7 +203,7 @@ static void cpumf_pmu_disable(struct pmu *pmu)  	err = lcctl(inactive);  	if (err) {  		pr_err("Disabling the performance measuring unit " -		       "failed with rc=%lx\n", err); +		       "failed with rc=%x\n", err);  		return;  	}  |