diff options
author | Jason Yan <yanaijie@huawei.com> | 2020-04-28 09:32:54 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-04-28 14:08:42 +0300 |
commit | 618c35556e5f2156c8bc5cd43664363838e38e45 (patch) | |
tree | 5b2d05c3a1e4fae3901f4982c22462cbbe08440c /arch/mips | |
parent | 0cf2ea1121aa14f6873ed2907a3e27b62c87fcbe (diff) | |
download | linux-618c35556e5f2156c8bc5cd43664363838e38e45.tar.xz |
MIPS: oprofile: remove unneeded semicolon in common.c
Fix the following coccicheck warning:
arch/mips/oprofile/common.c:113:2-3: Unneeded semicolon
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/oprofile/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/oprofile/common.c b/arch/mips/oprofile/common.c index 03db268cba5c..d3996c4c6440 100644 --- a/arch/mips/oprofile/common.c +++ b/arch/mips/oprofile/common.c @@ -110,7 +110,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) case CPU_LOONGSON64: lmodel = &op_model_loongson3_ops; break; - }; + } /* * Always set the backtrace. This allows unsupported CPU types to still |