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
|
@ -20,13 +20,13 @@
|
|||
* Version 2.0 available at www.apache.org/licenses/LICENSE-2.0.
|
||||
*/
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(modbus_serial, CONFIG_MODBUS_LOG_LEVEL);
|
||||
|
||||
#include <kernel.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <string.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/crc.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/crc.h>
|
||||
#include <modbus_internal.h>
|
||||
|
||||
static void modbus_serial_tx_on(struct modbus_context *ctx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue