From nobody Sun Apr 19 12:23:00 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 8CD72C76188 for ; Mon, 3 Apr 2023 21:18:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233655AbjDCVSj (ORCPT ); Mon, 3 Apr 2023 17:18:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33272 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232254AbjDCVSg (ORCPT ); Mon, 3 Apr 2023 17:18:36 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2A1F53A86; Mon, 3 Apr 2023 14:18:35 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id B79B162B48; Mon, 3 Apr 2023 21:18:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C81BAC433D2; Mon, 3 Apr 2023 21:18:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680556714; bh=ucmhwRX47uXO0MlZH7U9zOFpYmMj48MklJqZ2TW68Lk=; h=From:To:Cc:Subject:Date:From; b=VyNjo4ikVA6/7LcoEe3jRN//x86B6gZbYMzYSdmQcs5PW5XgtWoCWdFc0D5eC+SnB Ig8e5JpBl7oWkxqh+Uv/Q/kfv0/rGQ4Z9DlFd6FswtqEjtlBx9APyiwmLIc5+Rfulh gMLTPAqg9HaAlPHRIXpbGu/A74JjBbacT36jniopMjYngyc+Ey93YU/bgk2DBX5j0c mD3eoY4KgI5LNUDd87iB0KPBl/yTZHVYhKtlys8E8aV31rUqtr8M5Zi9iXlSt2QJ/m HgL0raKmdw6OmUQ8563SvSc61gRZZyPl9XdXAQPUMn+ick2a8dUwKOUoTUW5u/oAtI eXavevm2JxqKA== From: Stephen Boyd To: Michael Turquette , Stephen Boyd Cc: linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, patches@lists.linux.dev, "Garmin . Chang" , Chen-Yu Tsai , AngeloGioacchino Del Regno , kernel test robot Subject: [PATCH] clk: mediatek: Use right match table for mt8188-wpe Date: Mon, 3 Apr 2023 14:18:32 -0700 Message-Id: <20230403211832.1019605-1-sboyd@kernel.org> X-Mailer: git-send-email 2.40.0.348.gf938b09366-goog 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" This is copy/pasta from another file. Fix the match table pointer. Cc: Garmin.Chang Cc: Chen-Yu Tsai Cc: AngeloGioacchino Del Regno Fixes: f42b9e9a43e3 ("clk: mediatek: Add MT8188 wpesys clock support") Reported-by: kernel test robot Link: https://lore.kernel.org/oe-kbuild-all/202304011039.UBDX1UOT-lkp@intel= .com/ Signed-off-by: Stephen Boyd --- drivers/clk/mediatek/clk-mt8188-wpe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/mediatek/clk-mt8188-wpe.c b/drivers/clk/mediatek/c= lk-mt8188-wpe.c index 5abded13cece..c372ff703f9c 100644 --- a/drivers/clk/mediatek/clk-mt8188-wpe.c +++ b/drivers/clk/mediatek/clk-mt8188-wpe.c @@ -88,7 +88,7 @@ static const struct of_device_id of_match_clk_mt8188_wpe[= ] =3D { { .compatible =3D "mediatek,mt8188-wpesys-vpp0", .data =3D &wpe_vpp0_desc= }, { /* sentinel */ } }; -MODULE_DEVICE_TABLE(platform, clk_mt8188_vpp1_id_table); +MODULE_DEVICE_TABLE(platform, of_match_clk_mt8188_wpe); =20 static struct platform_driver clk_mt8188_wpe_drv =3D { .probe =3D mtk_clk_simple_probe, --=20 https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git/ https://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git