Skip to content

Commit 914d280

Browse files
committed
treewide: align to modified include paths in nrfx
Include nrfx instead of MDK. Signed-off-by: Marcin Szymczyk <[email protected]>
1 parent f8a9af2 commit 914d280

File tree

45 files changed

+40
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+40
-52
lines changed

boards/nordic/nrf7120pdk/board.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
#include <zephyr/device.h>
88
#include <zephyr/platform/hooks.h>
9-
#include "nrf7120_enga_types.h"
10-
#include "nrf7120_enga_global.h"
9+
#include <nrfx.h>
1110

1211
#if CONFIG_BOARD_EARLY_INIT_HOOK
1312
/* Temporary workaround while VPR does not handle starting clocks */

include/bl_storage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <string.h>
1111
#include <zephyr/types.h>
1212
#include <zephyr/autoconf.h>
13-
#include <drivers/nrfx_common.h>
13+
#include <nrfx.h>
1414
#if defined(CONFIG_NRFX_NVMC)
1515
#include <nrfx_nvmc.h>
1616
#elif defined(CONFIG_NRFX_RRAMC)

include/drivers/gpio/hpf_gpio.h

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

10-
#include <drivers/nrfx_common.h>
10+
#include <nrfx.h>
1111
#include <hpf/hpf_common.h>
1212

1313
#ifdef __cplusplus

include/esb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <stdbool.h>
1111
#include <errno.h>
1212

13-
#include <nrf.h>
13+
#include <nrfx.h>
1414
#include <hal/nrf_radio.h>
1515

1616
#include <zephyr/sys/util.h>

include/tfm/tfm_builtin_key_ids.h

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

10-
#include <nrf.h>
10+
#include <nrfx.h>
1111

1212
#if defined(NRF_CRACENCORE) || defined(CONFIG_CRACEN_HW_PRESENT)
1313

lib/fem_al/fem_al.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifdef DPPI_PRESENT
1313
#include <nrfx_dppi.h>
1414
#endif
15-
#include <nrf_erratas.h>
15+
#include <nrfx.h>
1616

1717
#include <zephyr/sys/printk.h>
1818

lib/flash_patch/flash_patch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
*/
66

7-
#include <nrf.h>
7+
#include <nrfx.h>
88
#include <zephyr/sys/reboot.h>
99
#include <zephyr/init.h>
1010

lib/fprotect/fprotect_bprot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
*/
66

7-
#include <nrf.h>
7+
#include <nrfx.h>
88
#if defined(NRF_BPROT)
99
#include <hal/nrf_bprot.h>
1010
#define PROTECT nrf_bprot_nvm_blocks_protection_enable

lib/fprotect/fprotect_rram.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <string.h>
99
#include <errno.h>
1010
#include <soc.h>
11-
#include <nrf_erratas.h>
11+
#include <nrfx.h>
1212
#include <hal/nrf_rramc.h>
1313

1414
#define RRAMC_REGION_FOR_FPROTECT_DEFAULT_VALUE 0x0000000f

lib/fprotect/fprotect_spu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <hal/nrf_spu.h>
1010
#include <errno.h>
1111
#include <soc.h>
12-
#include <nrf_erratas.h>
12+
#include <nrfx.h>
1313

1414

1515
#define SPU_BLOCK_SIZE CONFIG_FPROTECT_BLOCK_SIZE

0 commit comments

Comments
 (0)