From ec0287cd2f3739fd3d6d947f95e93c47d2bdcb99 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 7 Jun 2024 18:23:16 +0200 Subject: [PATCH] Added the missing fallthrough marker. --- src/device/isamem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/device/isamem.c b/src/device/isamem.c index cd59aa02d..a53f5e66c 100644 --- a/src/device/isamem.c +++ b/src/device/isamem.c @@ -582,6 +582,7 @@ isamem_init(const device_t *info) case ISAMEM_LOTECH_CARD: /* Lotech EMS */ /* The Lotech EMS cannot have more than 4096KB per board. */ ems_max = EMS_LOTECH_MAXSIZE; + fallthrough; case ISAMEM_BRXT_CARD: /* BocaRAM/XT */ dev->base_addr[0] = device_get_config_hex16("base"); dev->total_size = device_get_config_int("size");