Skip to content

Commit 89d0fe2

Browse files
[nrf noup] drivers: clock_control: nrf: skip nrf_clock.h on haltium
Don't include hal/nrf_clock.h on Haltium platforms as that HAL currently does not compile for those. Since this issue only affects projects that are downstream of NCS, and should be fixed soon by NRFX-6892, this patch is made as a temporary no-up that can be reverted along with the introduction of the fix. Ref: NCSDK-31213 Signed-off-by: Jonathan Nilsen <[email protected]>
1 parent 1e841e3 commit 89d0fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/zephyr/drivers/clock_control/nrf_clock_control.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_NRF_CLOCK_CONTROL_H_
99

1010
#include <zephyr/device.h>
11-
#ifdef NRF_CLOCK
11+
#if defined(NRF_CLOCK) && !defined(CONFIG_NRF_PLATFORM_HALTIUM)
1212
#include <hal/nrf_clock.h>
1313
#endif
1414
#include <zephyr/sys/onoff.h>

0 commit comments

Comments
 (0)