From mboxrd@z Thu Jan 1 00:00:00 1970 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 61DAFEE49AB for ; Tue, 22 Aug 2023 20:12:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230354AbjHVUMH (ORCPT ); Tue, 22 Aug 2023 16:12:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38866 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230328AbjHVUMH (ORCPT ); Tue, 22 Aug 2023 16:12:07 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B5408CE9; Tue, 22 Aug 2023 13:12:05 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 49CB162259; Tue, 22 Aug 2023 20:12:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9A4ABC433C8; Tue, 22 Aug 2023 20:12:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692735124; bh=Z+UH7WwFq8zaCz7Jk3ZDoupjuTJC8V1XbNWIEfgKxjs=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=bjvfDyG8ARfyy77ddS9l4WXgPznWOmfB3M0Im/csR0VPMYjS4kg/Y1LZ+TdQu6wWM nlJpnqwBqJWXwHosXpJMPheR4ESSgCTy2AxwvEneWOwaty2r5B4oaf1WG9QxEFw/Ow WR3ybPYi7QntRxjLvps+FU2K9O4H2SlnF2alUZo1aC+a9jp1DH3vL3RCrNcOk0T+B/ NKtkCfG7LY1wX0I/Ycf1AmE7oTTnZFrWSr4+zq4HgYNRRj9L3xhce9U5upAow1S90B FgOQrZoWOeFs16lUtZumEMp0pRG3zKXsupZivgkUuKs9K1yY935ayvVdpq+/PGGC2h Mi4zIb1MhorHg== Message-ID: <02cf8e599cca056c3a767565eaa1c999.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20230721070019.96627-3-biju.das.jz@bp.renesas.com> References: <20230721070019.96627-1-biju.das.jz@bp.renesas.com> <20230721070019.96627-3-biju.das.jz@bp.renesas.com> Subject: Re: [PATCH v2 2/2] clk: vc7: Use i2c_get_match_data() instead of device_get_match_data() From: Stephen Boyd Cc: Biju Das , linux-clk@vger.kernel.org, Geert Uytterhoeven , Prabhakar Mahadev Lad , linux-renesas-soc@vger.kernel.org, Marek Vasut To: Alex Helms , Biju Das , Michael Turquette Date: Tue, 22 Aug 2023 13:12:02 -0700 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Biju Das (2023-07-21 00:00:19) > The device_get_match_data(), is to get match data for firmware interfaces > such as just OF/ACPI. This driver has I2C matching table as well. Use > i2c_get_match_data() to get match data for I2C, ACPI and DT-based > matching. >=20 > Signed-off-by: Biju Das > Reviewed-by: Marek Vasut > Reviewed-by: Geert Uytterhoeven > --- Applied to clk-next