subsystems: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
3702f7220a
commit
5113c1418d
726 changed files with 2931 additions and 2931 deletions
|
@ -8,25 +8,25 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_REGISTER(hawkbit, CONFIG_HAWKBIT_LOG_LEVEL);
|
||||
|
||||
#include <stdio.h>
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <fs/nvs.h>
|
||||
#include <data/json.h>
|
||||
#include <net/net_ip.h>
|
||||
#include <net/socket.h>
|
||||
#include <net/net_mgmt.h>
|
||||
#include <sys/reboot.h>
|
||||
#include <drivers/flash.h>
|
||||
#include <net/http_client.h>
|
||||
#include <net/dns_resolve.h>
|
||||
#include <logging/log_ctrl.h>
|
||||
#include <storage/flash_map.h>
|
||||
#include <zephyr/fs/nvs.h>
|
||||
#include <zephyr/data/json.h>
|
||||
#include <zephyr/net/net_ip.h>
|
||||
#include <zephyr/net/socket.h>
|
||||
#include <zephyr/net/net_mgmt.h>
|
||||
#include <zephyr/sys/reboot.h>
|
||||
#include <zephyr/drivers/flash.h>
|
||||
#include <zephyr/net/http_client.h>
|
||||
#include <zephyr/net/dns_resolve.h>
|
||||
#include <zephyr/logging/log_ctrl.h>
|
||||
#include <zephyr/storage/flash_map.h>
|
||||
|
||||
#include "hawkbit_priv.h"
|
||||
#include "hawkbit_device.h"
|
||||
|
@ -35,7 +35,7 @@ LOG_MODULE_REGISTER(hawkbit, CONFIG_HAWKBIT_LOG_LEVEL);
|
|||
|
||||
#if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS)
|
||||
#define CA_CERTIFICATE_TAG 1
|
||||
#include <net/tls_credentials.h>
|
||||
#include <zephyr/net/tls_credentials.h>
|
||||
#endif
|
||||
|
||||
#define ADDRESS_ID 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue