aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkernel test robot <lkp@intel.com>2021-07-19 12:41:41 +0800
committerHeiko Carstens <hca@linux.ibm.com>2021-07-20 17:59:40 +0200
commit7d244643758e4cb51a29f948f6be3edd15d92cc3 (patch)
treecae9bff5bcfb3714dba2b99c532c3c816171d4e0
parents390/boot: fix use of expolines in the DMA code (diff)
downloadlinux-dev-7d244643758e4cb51a29f948f6be3edd15d92cc3.tar.xz
linux-dev-7d244643758e4cb51a29f948f6be3edd15d92cc3.zip
s390/cpumf: fix semicolon.cocci warnings
arch/s390/kernel/perf_cpum_cf.c:748:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: a029a4eab39e ("s390/cpumf: Allow concurrent access for CPU Measurement Counter Facility") CC: Thomas Richter <tmricht@linux.ibm.com> Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: kernel test robot <lkp@intel.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
-rw-r--r--arch/s390/kernel/perf_cpum_cf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/perf_cpum_cf.c b/arch/s390/kernel/perf_cpum_cf.c
index 975a00c8c564..d7dc36ec0a60 100644
--- a/arch/s390/kernel/perf_cpum_cf.c
+++ b/arch/s390/kernel/perf_cpum_cf.c
@@ -745,7 +745,7 @@ static int __init cpumf_pmu_init(void)
if (!cf_dbg) {
pr_err("Registration of s390dbf(cpum_cf) failed\n");
return -ENOMEM;
- };
+ }
debug_register_view(cf_dbg, &debug_sprintf_view);
cpumf_pmu.attr_groups = cpumf_cf_event_group();