From nobody Wed Oct 8 10:02:26 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E89E41E7C10; Mon, 30 Jun 2025 07:48:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751269689; cv=none; b=M1OkDShAmvfRVanuXjNums8ZHd+KNRxq8Gae7AOnjwB06KD9nEKzXCl7UppY0FI8lXmxW4b1w2mMys8QXsatboexs25N9Ni2Gavf2inF3KK+LYiMbfkYJdVwsxALRuNYpGbt2jTzGwgMxK+2Y7gcHKAI2E6GsoU1KIoyQodkxpk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751269689; c=relaxed/simple; bh=Ncl3helxO+ZS9QeFzkQwEfUkOIHQAykAjG5n7efWSDw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ViCk9UWgHdjkHZFhDYje4igju5A8OyDE80uuXwpnEtX90cmOMzLudj3VB8L/NJX0UNSTCJk+8z5n5ny/l7o+wW0vGqtBJburPYixBame7uriKHlStdm11tTvrenn1QrwPrk6reMyIOtjQfHYfJUOBGsfwJE1Ts/Ry0fijaz1jwQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id A1B32C4CEE3; Mon, 30 Jun 2025 07:48:06 +0000 (UTC) From: Geert Uytterhoeven To: Alexandre Belloni , Brendan Higgins , David Gow , Rae Moar , linux-kernel@vger.kernel.org Cc: linux-rtc@vger.kernel.org, linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com, Geert Uytterhoeven Subject: [PATCH resend] rtc: Rename lib_test to rtc_lib_test Date: Mon, 30 Jun 2025 09:47:54 +0200 Message-ID: X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" When compiling the RTC library functions test as a module, the module has the non-descriptive name "lib_test.ko". Fix this by adding the subsystem's name as a prefix. Signed-off-by: Geert Uytterhoeven --- drivers/rtc/Makefile | 2 +- drivers/rtc/{lib_test.c =3D> rtc_lib_test.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/rtc/{lib_test.c =3D> rtc_lib_test.c} (100%) diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 4619aa2ac4697591..aa08d1c8a32ec23d 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -15,7 +15,7 @@ rtc-core-$(CONFIG_RTC_INTF_DEV) +=3D dev.o rtc-core-$(CONFIG_RTC_INTF_PROC) +=3D proc.o rtc-core-$(CONFIG_RTC_INTF_SYSFS) +=3D sysfs.o =20 -obj-$(CONFIG_RTC_LIB_KUNIT_TEST) +=3D lib_test.o +obj-$(CONFIG_RTC_LIB_KUNIT_TEST) +=3D rtc_lib_test.o =20 # Keep the list ordered. =20 diff --git a/drivers/rtc/lib_test.c b/drivers/rtc/rtc_lib_test.c similarity index 100% rename from drivers/rtc/lib_test.c rename to drivers/rtc/rtc_lib_test.c --=20 2.43.0