mirror of
https://github.com/torvalds/linux.git
synced 2026-03-13 21:26:14 +01:00
MIPS: loongson2ef: Add missing break in cs5536_isa
Fixes build error:
arch/mips/loongson2ef/common/cs5536/cs5536_isa.c:217:2: error:
unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
default:
^
arch/mips/loongson2ef/common/cs5536/cs5536_isa.c:217:2:
note: insert 'break;' to avoid fall-through
default:
^
break;
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
afa624ff96
commit
f0e7c06f2b
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ void pci_isa_write_reg(int reg, u32 value)
|
|||
lo |= 0x00000063;
|
||||
_wrmsr(SB_MSR_REG(SB_ERROR), hi, lo);
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
/* ALL OTHER PCI CONFIG SPACE HEADER IS NOT IMPLEMENTED. */
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue