Skip to content

Commit 0cd311c

Browse files
gmarullnashif
authored andcommitted
include: fix files using legacy include paths
Some files were still using the already deprecated include path, fix this. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent f3375af commit 0cd311c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

drivers/power_domain/power_domain_intel_adsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <zephyr/pm/device.h>
99
#include <zephyr/pm/device_runtime.h>
1010

11-
#include <logging/log.h>
11+
#include <zephyr/logging/log.h>
1212
LOG_MODULE_REGISTER(power_domain_intel_adsp, LOG_LEVEL_INF);
1313

1414
#define PWRCTL_OFFSET 0xD0

soc/riscv/riscv-privilege/andes_v5/pma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#ifndef CONFIG_ASSERT
1313
#define LOG_LEVEL CONFIG_LOG_DEFAULT_LEVEL
14-
#include <logging/log.h>
14+
#include <zephyr/logging/log.h>
1515
LOG_MODULE_REGISTER(pma_init, LOG_LEVEL);
1616
#endif
1717

subsys/net/lib/tls_credentials/tls_credentials_trusted.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
*/
66
#include <string.h>
77

8-
#include <init.h>
9-
#include <kernel.h>
10-
#include <logging/log.h>
8+
#include <zephyr/init.h>
9+
#include <zephyr/kernel.h>
10+
#include <zephyr/logging/log.h>
1111

1212
#include <psa/protected_storage.h>
1313

0 commit comments

Comments
 (0)