From 67fb8e3a08514d39de26bc90eef99f2f39f55f76 Mon Sep 17 00:00:00 2001 From: Arkadiusz Balys Date: Fri, 17 May 2024 14:48:22 +0200 Subject: [PATCH] [nrf noup] Power nRF54H20 workaround. Provided a workaround for power reason for nrf54h20 since it is not available yet. --- src/platform/nrfconnect/Reboot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/nrfconnect/Reboot.cpp b/src/platform/nrfconnect/Reboot.cpp index 6d52facf74..47bff8c185 100644 --- a/src/platform/nrfconnect/Reboot.cpp +++ b/src/platform/nrfconnect/Reboot.cpp @@ -21,14 +21,14 @@ #include -#ifndef CONFIG_ARCH_POSIX +#if !(defined(CONFIG_ARCH_POSIX) || defined(CONFIG_SOC_SERIES_NRF54HX)) #include #endif namespace chip { namespace DeviceLayer { -#ifdef CONFIG_ARCH_POSIX +#if defined(CONFIG_ARCH_POSIX) || defined(CONFIG_SOC_SERIES_NRF54HX) void Reboot(SoftwareRebootReason reason) {