From nobody Sat Apr 11 06:41:06 2026 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18660C25B0E for ; Mon, 15 Aug 2022 12:03:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230383AbiHOMDl (ORCPT ); Mon, 15 Aug 2022 08:03:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46200 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229612AbiHOMDj (ORCPT ); Mon, 15 Aug 2022 08:03:39 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 716DE22B3F; Mon, 15 Aug 2022 05:03:38 -0700 (PDT) Received: from hillo.muru.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTP id 26A7A80FB; Mon, 15 Aug 2022 11:56:45 +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 Subject: [PATCH] clocksource/drivers/timer-ti-dm: Fix compile test warning Date: Mon, 15 Aug 2022 15:03:34 +0300 Message-Id: <20220815120334.51887-1-tony@atomide.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" 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 selectabl= e for ARCH_K3") Reported-by: kernel test robot Signed-off-by: Tony Lindgren --- 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 @@ -1040,7 +1040,7 @@ static const struct dmtimer_platform_data am6_pdata = =3D { .timer_ops =3D &dmtimer_ops, }; =20 -static const struct of_device_id omap_timer_match[] =3D { +static const __maybe_unused struct of_device_id omap_timer_match[] =3D { { .compatible =3D "ti,omap2420-timer", }, --=20 2.37.1