Skip to content

Commit db50837

Browse files
gmarullcarlescufi
authored andcommitted
boards: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all boards code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to #45388 for more details. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 0d85931 commit db50837

File tree

129 files changed

+250
-250
lines changed

Some content is hidden

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

129 files changed

+250
-250
lines changed

boards/arc/em_starterkit/arc_mpu_regions.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <devicetree.h>
7+
#include <zephyr/devicetree.h>
88
#include <soc.h>
9-
#include <arch/arc/v2/mpu/arc_mpu.h>
10-
#include <linker/linker-defs.h>
9+
#include <zephyr/arch/arc/v2/mpu/arc_mpu.h>
10+
#include <zephyr/linker/linker-defs.h>
1111

1212
/*
1313
* for secure firmware, MPU entries are only set up for secure world.

boards/arc/em_starterkit/pmodmux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
#include <soc.h>
8-
#include <init.h>
8+
#include <zephyr/init.h>
99

1010
#define PMODMUX_BASE_ADDR 0xF0000000
1111

boards/arc/emsdp/arc_mpu_regions.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <devicetree.h>
7+
#include <zephyr/devicetree.h>
88
#include <soc.h>
9-
#include <arch/arc/v2/mpu/arc_mpu.h>
10-
#include <linker/linker-defs.h>
9+
#include <zephyr/arch/arc/v2/mpu/arc_mpu.h>
10+
#include <zephyr/linker/linker-defs.h>
1111

1212
static struct arc_mpu_region mpu_regions[] = {
1313
/* Region ICCM */

boards/arc/hsdk/pinmux.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
*/
66

77
#include <soc.h>
8-
#include <init.h>
9-
#include <drivers/pinmux.h>
8+
#include <zephyr/init.h>
9+
#include <zephyr/drivers/pinmux.h>
1010

1111
static int board_pinmux_init(const struct device *dev)
1212
{

boards/arc/iotdk/arc_mpu_regions.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <devicetree.h>
7+
#include <zephyr/devicetree.h>
88
#include <soc.h>
9-
#include <arch/arc/v2/mpu/arc_mpu.h>
10-
#include <linker/linker-defs.h>
9+
#include <zephyr/arch/arc/v2/mpu/arc_mpu.h>
10+
#include <zephyr/linker/linker-defs.h>
1111

1212
static struct arc_mpu_region mpu_regions[] = {
1313
/* Region ICCM */

boards/arc/nsim/arc_mpu_regions.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <devicetree.h>
7+
#include <zephyr/devicetree.h>
88
#include <soc.h>
9-
#include <arch/arc/v2/mpu/arc_mpu.h>
10-
#include <linker/linker-defs.h>
9+
#include <zephyr/arch/arc/v2/mpu/arc_mpu.h>
10+
#include <zephyr/linker/linker-defs.h>
1111

1212
/*
1313
* for secure firmware, MPU entries are only set up for secure world.

boards/arc/qemu_arc/arc_mpu_regions.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <devicetree.h>
7+
#include <zephyr/devicetree.h>
88
#include <soc.h>
9-
#include <arch/arc/v2/mpu/arc_mpu.h>
10-
#include <linker/linker-defs.h>
9+
#include <zephyr/arch/arc/v2/mpu/arc_mpu.h>
10+
#include <zephyr/linker/linker-defs.h>
1111

1212
/*
1313
* for secure firmware, MPU entries are only set up for secure world.

boards/arm/96b_meerkat96/pinmux.c

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

7-
#include <init.h>
7+
#include <zephyr/init.h>
88
#include "device_imx.h"
99

1010
static int meerakt96_pinmux_init(const struct device *dev)

boards/arm/96b_wistrio/rf.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <drivers/gpio.h>
8-
#include <init.h>
7+
#include <zephyr/drivers/gpio.h>
8+
#include <zephyr/init.h>
99

1010
static int rf_init(const struct device *dev)
1111
{

boards/arm/actinius_icarus/board.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include <init.h>
8-
#include <drivers/gpio.h>
7+
#include <zephyr/init.h>
8+
#include <zephyr/drivers/gpio.h>
99

10-
#include <logging/log.h>
10+
#include <zephyr/logging/log.h>
1111
LOG_MODULE_REGISTER(board_control, CONFIG_BOARD_ICARUS_LOG_LEVEL);
1212

1313
#define SIM_SELECT_PIN 8

0 commit comments

Comments
 (0)