Replace the fall through comment with fallthrough; in the ar2315 flash driver. This fixes a compile warning. Signed-off-by: Hauke Mehrtens <[email protected]>
@@ -350,13 +350,13 @@
+ switch (read_len) {
+ case 4:
+ spi_data |= buf[3] << 24;
-+ /* fall through */
++ fallthrough;
+ case 3:
+ spi_data |= buf[2] << 16;
+ case 2:
+ spi_data |= buf[1] << 8;
+ case 1:
+ spi_data |= buf[0] & 0xff;
+ break;