From patchwork Sun Aug 20 17:11:43 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 13358851 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 133CAEE49AB for ; Sun, 20 Aug 2023 17:16:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229805AbjHTRQU (ORCPT ); Sun, 20 Aug 2023 13:16:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55562 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229842AbjHTRQM (ORCPT ); Sun, 20 Aug 2023 13:16:12 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 0ECC0173E; Sun, 20 Aug 2023 10:11:50 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.01,188,1684767600"; d="scan'208";a="177097982" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 21 Aug 2023 02:11:50 +0900 Received: from localhost.localdomain (unknown [10.226.92.18]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 097AC40062AF; Mon, 21 Aug 2023 02:11:47 +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 RESEND] Convert enum->pointer for data in the sbs-battery match tables Date: Sun, 20 Aug 2023 18:11:43 +0100 Message-Id: <20230820171145.82662-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(-)