mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
6c700b35a5
Having an empty default: case in a switch statement causes a warning
(when using Clang; I don't see the warning when using gcc),
so add a "break;" to the default case to prevent the warning:
drivers/ssb/main.c:1149:2: warning: label at end of compound statement is a C2x extension [-Wc2x-extensions]
Fixes:
|
||
---|---|---|
.. | ||
b43_pci_bridge.c | ||
bridge_pcmcia_80211.c | ||
driver_chipcommon_pmu.c | ||
driver_chipcommon_sflash.c | ||
driver_chipcommon.c | ||
driver_extif.c | ||
driver_gige.c | ||
driver_gpio.c | ||
driver_mipscore.c | ||
driver_pcicore.c | ||
embedded.c | ||
host_soc.c | ||
Kconfig | ||
main.c | ||
Makefile | ||
pci.c | ||
pcihost_wrapper.c | ||
pcmcia.c | ||
scan.c | ||
sdio.c | ||
sprom.c | ||
ssb_private.h |