arch/riscv/mm/kasan_init.c:95:2-3: Unneeded semicolon

From: kernel test robot
Date: Mon Aug 03 2020 - 08:33:58 EST


tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: bcf876870b95592b52519ed4aafcf9d95999bc9c
commit: 8ad8b72721d0f07fa02dbe71f901743f9c71c8e6 riscv: Add KASAN support
date: 6 months ago
config: riscv-randconfig-c004-20200803 (attached as .config)
compiler: riscv64-linux-gcc (GCC) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@xxxxxxxxx>


coccinelle warnings: (new ones prefixed by >>)

>> arch/riscv/mm/kasan_init.c:95:2-3: Unneeded semicolon

vim +95 arch/riscv/mm/kasan_init.c

77
78 void __init kasan_init(void)
79 {
80 struct memblock_region *reg;
81 unsigned long i;
82
83 kasan_populate_early_shadow((void *)KASAN_SHADOW_START,
84 (void *)kasan_mem_to_shadow((void *)VMALLOC_END));
85
86 for_each_memblock(memory, reg) {
87 void *start = (void *)__va(reg->base);
88 void *end = (void *)__va(reg->base + reg->size);
89
90 if (start >= end)
91 break;
92
93 populate(kasan_mem_to_shadow(start),
94 kasan_mem_to_shadow(end));
> 95 };

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@xxxxxxxxxxxx

Attachment: .config.gz
Description: application/gzip