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,16 +8,16 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_DECLARE(net_ipv4, CONFIG_NET_IPV4_LOG_LEVEL);
|
||||
|
||||
#include <errno.h>
|
||||
#include <net/net_core.h>
|
||||
#include <net/net_pkt.h>
|
||||
#include <net/net_stats.h>
|
||||
#include <net/net_context.h>
|
||||
#include <net/net_mgmt.h>
|
||||
#include <net/igmp.h>
|
||||
#include <zephyr/net/net_core.h>
|
||||
#include <zephyr/net/net_pkt.h>
|
||||
#include <zephyr/net/net_stats.h>
|
||||
#include <zephyr/net/net_context.h>
|
||||
#include <zephyr/net/net_mgmt.h>
|
||||
#include <zephyr/net/igmp.h>
|
||||
#include "net_private.h"
|
||||
#include "connection.h"
|
||||
#include "ipv4.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue