From patchwork Mon Aug 15 13:16:41 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 12943582 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 72966C00140 for ; Mon, 15 Aug 2022 13:24:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=aeeMdARubhSKCXYTuY6LEvyQlD1e9Eughcr8yU6wf6k=; b=iIB7rMILKGoK5o hyN9bTPIlcK9Vo93XPVmaoU68jgehmo0LjVO53J7iWZvmmXTffue5EkYSyTwyAASfZzHEoeQmwlyu E+PDt3YPfjDBLnTReECtWrpZICWBE398zufpu9lpkKAin30Ct9uCc3l3cup0I1wYCI0KnmdapGn3E wr3Nh9sq9rsylfi3coL9jbI7Q0c+Ukl8FnuHWtM8uRQ6Ft2Lj52fhDrRYp58Putds0eBkxR6QdL3f nnrhN5zhaqZlEW1xZBMQPMtt8Y09tD0OU20Oj6mPPZXc6wzPNgO2oR5PUkZOsNA1nheMqlYEH100l RflZM0zp/enV6PYAHtww==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oNa3l-00Gk4Q-Uu; Mon, 15 Aug 2022 13:23:14 +0000 Received: from muru.com ([72.249.23.125]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oNZxZ-00Geoi-OI for linux-arm-kernel@lists.infradead.org; Mon, 15 Aug 2022 13:16:50 +0000 Received: from hillo.muru.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTP id 2CD7E80FB; Mon, 15 Aug 2022 13:09:57 +0000 (UTC) From: Tony Lindgren To: Daniel Lezcano , Thomas Gleixner Cc: linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kernel test robot , Arnd Bergmann Subject: [PATCH v2 1/1] clocksource/drivers/timer-ti-dm: Fix compile test warning Date: Mon, 15 Aug 2022 16:16:41 +0300 Message-Id: <20220815131642.35116-1-tony@atomide.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220815_061649_886337_0030A2AB X-CRM114-Status: GOOD ( 12.77 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org We can get a warning with COMPILE_TEST enabled for omap_timer_match for 'omap_timer_match' defined but not used. Fixes: ab0bbef3ae0f ("clocksource/drivers/timer-ti-dm: Make timer selectable for ARCH_K3") Reported-by: kernel test robot Suggested-by: Arnd Bergmann Signed-off-by: Tony Lindgren Acked-by: Arnd Bergmann --- Changes since v1: - Remove of_match_ptr() instead of adding __maybe_unused as suggested by Arnd --- drivers/clocksource/timer-ti-dm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/timer-ti-dm.c b/drivers/clocksource/timer-ti-dm.c --- a/drivers/clocksource/timer-ti-dm.c +++ b/drivers/clocksource/timer-ti-dm.c @@ -1081,7 +1081,7 @@ static struct platform_driver omap_dm_timer_driver = { .remove = omap_dm_timer_remove, .driver = { .name = "omap_timer", - .of_match_table = of_match_ptr(omap_timer_match), + .of_match_table = omap_timer_match, .pm = &omap_dm_timer_pm_ops, }, };