Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion soc/espressif/esp32/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <hal/rtc_io_hal.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

static uint32_t intenable;

Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32c2/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

/* Invoke Low Power/System Off specific Tasks */
void pm_state_set(enum pm_state state, uint8_t substate_id)
Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32c3/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

/* Invoke Low Power/System Off specific Tasks */
void pm_state_set(enum pm_state state, uint8_t substate_id)
Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32c6/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

/* Invoke Low Power/System Off specific Tasks */
void pm_state_set(enum pm_state state, uint8_t substate_id)
Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32h2/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

/* Invoke Low Power/System Off specific Tasks */
void pm_state_set(enum pm_state state, uint8_t substate_id)
Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32s2/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

static uint32_t intenable;

Expand Down
2 changes: 1 addition & 1 deletion soc/espressif/esp32s3/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <esp_sleep.h>

#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
LOG_MODULE_REGISTER(soc_pm, CONFIG_SOC_LOG_LEVEL);

static uint32_t intenable;

Expand Down
Loading