mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 14:01:55 +00:00
In order to bring consistency in-tree, migrate all drivers to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to #45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
16 lines
344 B
C
16 lines
344 B
C
/**
|
|
* Copyright (c) 2020 Linumiz
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_DRIVERS_WIFI_ESWIFI_ESWIFI_LOG_H_
|
|
#define ZEPHYR_DRIVERS_WIFI_ESWIFI_ESWIFI_LOG_H_
|
|
|
|
#define LOG_MODULE_NAME wifi_eswifi
|
|
#define LOG_LEVEL CONFIG_WIFI_LOG_LEVEL
|
|
|
|
#include <zephyr/logging/log.h>
|
|
|
|
#endif /* ZEPHYR_DRIVERS_WIFI_ESWIFI_ESWIFI_LOG_H_ */
|