From nobody Wed Dec 17 08:56:14 2025 Received: from gauss.telenet-ops.be (gauss.telenet-ops.be [195.130.132.49]) (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 C3E87198823 for ; Thu, 27 Mar 2025 15:43:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.49 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743090193; cv=none; b=PChS3RZS7Piupkff6j4Rq7hBFKRUWE8j3jnd2JxjdshpndYjy6+VT1rrelkTH3Ehhes/Ef5TXXFJQgAesZ+9w0lVnkPDZbfrHomswgiJ8ttJ48RhRUjtLObkbEh/UX7gFS3vTIQBGe9vf1YuqTVSm4nVn+32xwbeG5tjLN0DX20= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743090193; c=relaxed/simple; bh=9MJdlM3coeZFkA6pFM6DJcyW5HfVOzFSWssH9fzHpeA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=PyWcUT8+SkuWnutSm0qc/zRwPp7WvIJwf9hiR3doiofeR0e86EjLOUSGQ0c9pJLu97vwUZZ6KA9L+u+xDgCwDaMT56Y2qaSE7WusNa/IJD8wuIrAix5Oqm3LTHyM850LqENvbzln1nqI81Nw+L7lR6yd3J16ZVlBKAlAoghyIkU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=linux-m68k.org; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.49 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=linux-m68k.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from laurent.telenet-ops.be (laurent.telenet-ops.be [IPv6:2a02:1800:110:4::f00:19]) by gauss.telenet-ops.be (Postfix) with ESMTPS id 4ZNnx231Lpz4xL4J for ; Thu, 27 Mar 2025 16:43:02 +0100 (CET) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:b1ef:107c:7814:6642]) by laurent.telenet-ops.be with cmsmtp id Vriv2E0065Szt1p01rivvs; Thu, 27 Mar 2025 16:42:55 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.97) (envelope-from ) id 1txpNe-0000000Fsi7-24Kr; Thu, 27 Mar 2025 16:42:55 +0100 Received: from geert by rox.of.borg with local (Exim 4.97) (envelope-from ) id 1txpNe-00000006DNN-4Ayq; Thu, 27 Mar 2025 16:42:55 +0100 From: Geert Uytterhoeven To: Alexandre Belloni Cc: linux-rtc@vger.kernel.org, linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] rtc: Rename lib_test to rtc_lib_test Date: Thu, 27 Mar 2025 16:42:53 +0100 Message-ID: <8edd0c09fe12d1225e2b830f8a55e7c830da078b.1743090053.git.geert@linux-m68k.org> 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 489b4ab07068c758..c0ccbbfe2739c1aa 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