From 646ef0b3b136c5a39a60ddf1c37a8b0b3c971a40 Mon Sep 17 00:00:00 2001 From: Ryan McClelland Date: Tue, 8 Aug 2023 23:12:22 -0700 Subject: [PATCH] drivers: misc: ethos_u: rename init.c to ethos_u.c A file just named `init.c` is not that descriptive inside of a project that has a lot of files of already. Rename to `ethos_u.c`. Signed-off-by: Ryan McClelland --- drivers/misc/ethos_u/CMakeLists.txt | 2 +- drivers/misc/ethos_u/{init.c => ethos_u.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/misc/ethos_u/{init.c => ethos_u.c} (100%) diff --git a/drivers/misc/ethos_u/CMakeLists.txt b/drivers/misc/ethos_u/CMakeLists.txt index 1bb2d158045..c251488eb3c 100644 --- a/drivers/misc/ethos_u/CMakeLists.txt +++ b/drivers/misc/ethos_u/CMakeLists.txt @@ -3,4 +3,4 @@ # SPDX-License-Identifier: Apache-2.0 zephyr_library() -zephyr_library_sources(init.c) +zephyr_library_sources(ethos_u.c) diff --git a/drivers/misc/ethos_u/init.c b/drivers/misc/ethos_u/ethos_u.c similarity index 100% rename from drivers/misc/ethos_u/init.c rename to drivers/misc/ethos_u/ethos_u.c