Skip to content

Commit 2179038

Browse files
cvinayaknordicjm
authored andcommitted
[nrf fromtree] Bluetooth: Controller: nRF54L: Fix PPIB interface include cond compile
Fix trivial PPIB interface include conditional compile. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]> (cherry picked from commit 625f305) Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 9d57679 commit 2179038

File tree

1 file changed

+2
-1
lines changed
  • subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio

1 file changed

+2
-1
lines changed

subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,22 @@
4040
#include <hal/nrf_vreqctrl.h>
4141
#include "radio_nrf5340.h"
4242
#elif defined(CONFIG_SOC_SERIES_NRF54LX)
43+
#include <hal/nrf_ppib.h>
4344
#include "radio_nrf54lx.h"
4445
#elif defined(CONFIG_BOARD_NRF52_BSIM)
4546
#include "radio_sim_nrf52.h"
4647
#elif defined(CONFIG_BOARD_NRF5340BSIM_NRF5340_CPUNET)
4748
#include <hal/nrf_vreqctrl.h>
4849
#include "radio_sim_nrf5340.h"
4950
#elif defined(CONFIG_BOARD_NRF54L15BSIM_NRF54L15_CPUAPP)
51+
#include <hal/nrf_ppib.h>
5052
#include "radio_sim_nrf54l.h"
5153
#else
5254
#error "Unsupported SoC."
5355
#endif
5456

5557
#if defined(CONFIG_BT_CTLR_NRF_GRTC)
5658
#include <hal/nrf_grtc.h>
57-
#include <hal/nrf_ppib.h>
5859
#else /* !CONFIG_BT_CTLR_NRF_GRTC */
5960
#include <hal/nrf_rtc.h>
6061
#endif /* !CONFIG_BT_CTLR_NRF_GRTC */

0 commit comments

Comments
 (0)