From patchwork Sun Aug 20 18:43:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 715355 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 A9ACEEE49A5 for ; Sun, 20 Aug 2023 18:47:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230295AbjHTSrd (ORCPT ); Sun, 20 Aug 2023 14:47:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55896 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230145AbjHTSrc (ORCPT ); Sun, 20 Aug 2023 14:47:32 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id DAC24359D; Sun, 20 Aug 2023 11:44:08 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.01,188,1684767600"; d="scan'208";a="177101046" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 21 Aug 2023 03:44:08 +0900 Received: from localhost.localdomain (unknown [10.226.92.18]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id E6B00406BF96; Mon, 21 Aug 2023 03:44:04 +0900 (JST) From: Biju Das To: Guenter Roeck , Heikki Krogerus Cc: Biju Das , Greg Kroah-Hartman , linux-usb@vger.kernel.org, Geert Uytterhoeven , Dmitry Torokhov , Andy Shevchenko , Andi Shyti , linux-renesas-soc@vger.kernel.org Subject: [PATCH 0/4] onvert enum->pointer for data in the rt1711h match tables Date: Sun, 20 Aug 2023 19:43:58 +0100 Message-Id: <20230820184402.102486-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-usb@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. The third and fourth patches replaces comparison of did against hardware differences with data and feature bit. This patch series is only compile tested. [1] https://lore.kernel.org/all/20230804161728.394920-1-biju.das.jz@bp.renesas.com/ Biju Das (4): usb: typec: tcpci_rt1711h: Make similar OF and ID table usb: typec: tcpci_rt1711h: Convert enum->pointer for data in the match tables usb: typec: tcpci_rt1711h: Add rxdz_sel variable to struct rt1711h_chip_info usb: typec: tcpci_rt1711h: Add enable_pd30_extended_message feature bit to struct rt1711h_chip_info drivers/usb/typec/tcpm/tcpci_rt1711h.c | 38 ++++++++++++++++++-------- 1 file changed, 26 insertions(+), 12 deletions(-)