From 2e68ddc8266aa8bd70e8e734a5b433e2ed299603 Mon Sep 17 00:00:00 2001 From: Joshua Diamond Date: Fri, 12 Dec 2025 13:17:42 -0500 Subject: [PATCH] Fix broken compilation when OS_DETECTION_DEBUG_ENABLE is defined (#25869) Fix include in os_detection (broken in https://github.com/qmk/qmk_firmware/pull/24356) --- quantum/os_detection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/os_detection.c b/quantum/os_detection.c index 552375f61c..2a5237dfc3 100644 --- a/quantum/os_detection.c +++ b/quantum/os_detection.c @@ -23,7 +23,7 @@ #endif #ifdef OS_DETECTION_DEBUG_ENABLE -# include "eeconfig.h" +# include "nvm_eeprom_eeconfig_internal.h" # include "eeprom.h" # include "print.h"