From: Hauke Mehrtens Date: Thu, 18 May 2023 14:19:47 +0000 (+0200) Subject: ath25: Replace fall through comment with fallthrough; X-Git-Tag: v23.05.0-rc1~104 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fhauke.git;a=commitdiff_plain;h=53956dd2f673fa3aacb643f88b25bb0314905931 ath25: Replace fall through comment with fallthrough; Replace the fall through comment with fallthrough; in the ar2315 flash driver. This fixes a compile warning. Signed-off-by: Hauke Mehrtens --- diff --git a/target/linux/ath25/patches-5.15/120-spiflash.patch b/target/linux/ath25/patches-5.15/120-spiflash.patch index c0f4fa6204..b7a9607ac9 100644 --- a/target/linux/ath25/patches-5.15/120-spiflash.patch +++ b/target/linux/ath25/patches-5.15/120-spiflash.patch @@ -350,13 +350,13 @@ + switch (read_len) { + case 4: + spi_data |= buf[3] << 24; -+ /* fall through */ ++ fallthrough; + case 3: + spi_data |= buf[2] << 16; -+ /* fall through */ ++ fallthrough; + case 2: + spi_data |= buf[1] << 8; -+ /* fall through */ ++ fallthrough; + case 1: + spi_data |= buf[0] & 0xff; + break;