From patchwork Sun Aug 20 17:08:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 13358847 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 E230AEE49A5 for ; Sun, 20 Aug 2023 17:11:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229579AbjHTRLi (ORCPT ); Sun, 20 Aug 2023 13:11:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53766 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229805AbjHTRLf (ORCPT ); Sun, 20 Aug 2023 13:11:35 -0400 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id E56E83C3D; Sun, 20 Aug 2023 10:08:46 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.01,188,1684767600"; d="scan'208";a="173400400" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 21 Aug 2023 02:08:46 +0900 Received: from localhost.localdomain (unknown [10.226.92.18]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id DA59440062AF; Mon, 21 Aug 2023 02:08:43 +0900 (JST) From: Biju Das To: Sebastian Reichel Cc: Biju Das , linux-pm@vger.kernel.org, Geert Uytterhoeven , Dmitry Torokhov , Andy Shevchenko , Andi Shyti , linux-renesas-soc@vger.kernel.org Subject: [PATCH 0/2] Convert enum->pointer for data in the tmp51x match tables Date: Sun, 20 Aug 2023 18:08:39 +0100 Message-Id: <20230820170841.82501-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Convert enum->pointer for data in the match tables, so that device_get_match_data() can do match against OF/ACPI/I2C tables, once i2c bus type match support added to it. see [1] This patch series extend support for retrieving match data for ID lookup. The first patch fixes the driver_data for ID table and second patch convert enum->pointer to avoid non zero values as the proposed solution returns NULL for non-match. This patch series is only compile tested. [1] https://lore.kernel.org/all/20230804161728.394920-1-biju.das.jz@bp.renesas.com/ Biju Das (2): power: supply: sbs-battery: Make similar OF and ID table power: supply: sbs-battery: Convert enum->pointer for data in the match tables drivers/power/supply/sbs-battery.c | 42 ++++++++++++++++++------------ 1 file changed, 26 insertions(+), 16 deletions(-)