From ec8f0ac2a977a17e911bb3247a9e82525e417085 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Mon, 22 Nov 2021 19:46:18 +0100 Subject: [PATCH] pm: power.c -> pm.c Rename system PM source file to align with naming used by Kconfig/headers. Signed-off-by: Gerard Marull-Paretas --- subsys/pm/CMakeLists.txt | 2 +- subsys/pm/{power.c => pm.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename subsys/pm/{power.c => pm.c} (100%) diff --git a/subsys/pm/CMakeLists.txt b/subsys/pm/CMakeLists.txt index 0d09e0ef391..a7a494cc2b4 100644 --- a/subsys/pm/CMakeLists.txt +++ b/subsys/pm/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 if(CONFIG_PM) - zephyr_sources(power.c pm_ctrl.c) + zephyr_sources(pm.c pm_ctrl.c) zephyr_sources_ifdef(CONFIG_PM_STATS pm_stats.c) endif() diff --git a/subsys/pm/power.c b/subsys/pm/pm.c similarity index 100% rename from subsys/pm/power.c rename to subsys/pm/pm.c