From nobody Thu Sep 11 23:23:43 2025 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 B5D33C001B0 for ; Tue, 8 Aug 2023 19:14:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235619AbjHHTOZ (ORCPT ); Tue, 8 Aug 2023 15:14:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60518 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235372AbjHHTN5 (ORCPT ); Tue, 8 Aug 2023 15:13:57 -0400 Received: from szxga08-in.huawei.com (szxga08-in.huawei.com [45.249.212.255]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 43F7E36843 for ; Tue, 8 Aug 2023 09:36:50 -0700 (PDT) Received: from kwepemi500008.china.huawei.com (unknown [172.30.72.55]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4RKtYl6h5fz1L945; Tue, 8 Aug 2023 20:59:23 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi500008.china.huawei.com (7.221.188.139) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.27; Tue, 8 Aug 2023 21:00:33 +0800 From: Ruan Jinjie To: , Lee Jones CC: Subject: [PATCH -next] mfd: tc3589x: Remove redundant of_match_ptr() Date: Tue, 8 Aug 2023 21:00:02 +0800 Message-ID: <20230808130003.4076702-1-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To kwepemi500008.china.huawei.com (7.221.188.139) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The driver depends on CONFIG_OF, it is not necessary to use of_match_ptr() here. Signed-off-by: Ruan Jinjie --- drivers/mfd/tc3589x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/tc3589x.c b/drivers/mfd/tc3589x.c index 16df64e3c0be..28125599fea4 100644 --- a/drivers/mfd/tc3589x.c +++ b/drivers/mfd/tc3589x.c @@ -483,7 +483,7 @@ static struct i2c_driver tc3589x_driver =3D { .driver =3D { .name =3D "tc3589x", .pm =3D pm_sleep_ptr(&tc3589x_dev_pm_ops), - .of_match_table =3D of_match_ptr(tc3589x_match), + .of_match_table =3D tc3589x_match, }, .probe =3D tc3589x_probe, .remove =3D tc3589x_remove, --=20 2.34.1