MIPS: KVM: Convert a fallthrough comment to fallthrough
authorJiaxun Yang <jiaxun.yang@flygoat.com>
Mon, 10 Aug 2020 01:17:49 +0000 (09:17 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 10 Aug 2020 08:11:48 +0000 (04:11 -0400)
commitf40a4b0512839d07be0b03dd4097de5582fa136d
tree36ba0253b151c245418124e83200fccbc7b64bed
parentcf99c505cf7a5b6d3deee91e3571871f20320d31
MIPS: KVM: Convert a fallthrough comment to fallthrough

There is a fallthrough comment being forgotten,
GCC complains about it:

arch/mips/kvm/emulate.c: In function kvm_mips_emulate_load:
arch/mips/kvm/emulate.c:1936:21: error: this statement may fall through
 1936 |   vcpu->mmio_needed = 1; /* unsigned */
      |   ~~~~~~~~~~~~~~~~~~^~~
arch/mips/kvm/emulate.c:1939:2: note: here
 1939 |  case lw_op:

Just fix it.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Huacai Chen <chenhc@lemote.com>
Message-Id: <20200810011749.3211128-1-jiaxun.yang@flygoat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/mips/kvm/emulate.c