From patchwork Thu Jul 13 10:41:41 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Li Chen X-Patchwork-Id: 702407 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 41590EB64DD for ; Thu, 13 Jul 2023 10:41:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233269AbjGMKlv (ORCPT ); Thu, 13 Jul 2023 06:41:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42532 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232129AbjGMKlu (ORCPT ); Thu, 13 Jul 2023 06:41:50 -0400 Received: from sender4-op-o15.zoho.com (sender4-op-o15.zoho.com [136.143.188.15]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DB5471BFA; Thu, 13 Jul 2023 03:41:48 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1689244904; cv=none; d=zohomail.com; s=zohoarc; b=HWGAHfq2NA0fA/S8+tFTf3PF3oHtqnKv6qYKTziQL6WfHGDgwfo6FWYHzCve15UCS1vMARGO0tiYKZBAzLey3lc+NZ78Z5hc5Tt0w66wd770MMBujs5XgWhkFCufdvgPd8+DYwjSqUmkATWhDpHBHrwAu9H2p8PPXELy8jMYQeA= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1689244904; h=Content-Type:Content-Transfer-Encoding:Date:From:MIME-Version:Message-ID:Subject:To; bh=lEvsxzz+qJghQc8kzyg734nbqEHR6EFKqv5AJo4kZ2M=; b=eZeTPbCSWVujqjEwRZ4mKFVhgZGWpNPaerQlwncM2gObQP7K3bbRiwgh53gBVdPbxWH2prQG7mLg5EjEzhzujFJSefxgAZU8vytnz7Rj++Q64fAaFfSZu/5+HP09FtKhaEdZAa4nXp8GcG2zISbc2KGgRzN09YH/BNriJA34y1E= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=linux.beauty; spf=pass smtp.mailfrom=me@linux.beauty; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1689244904; s=zmail; d=linux.beauty; i=me@linux.beauty; h=Date:Date:From:From:To:To:Message-ID:In-Reply-To:Subject:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-Id:Reply-To:Cc; bh=lEvsxzz+qJghQc8kzyg734nbqEHR6EFKqv5AJo4kZ2M=; b=Zzr/IXD5lIGPVJUexUifXLTNgDhLmOoj/T+3Ub2XCvGUDK7opaP8gSjFThySbeMI R5fJj2Oqo73uPBfuIL7OQq5WrWdhPGOQ5r3ZT8jOSSrvjIXmTp85BlkT1UtTpnBs7Um QHVZWnNa253PfEaKH0Hj7MsqXvgFYNoblIDfKHuM= Received: from mail.zoho.com by mx.zohomail.com with SMTP id 1689244901917389.12497445346855; Thu, 13 Jul 2023 03:41:41 -0700 (PDT) Date: Thu, 13 Jul 2023 18:41:41 +0800 From: Li Chen To: "Rob Herring" , "Frank Rowand" , "devicetree" , "linux-kernel" Message-ID: <1894ed7a1a9.f5e49d5d141371.2744760538860302017@linux.beauty> In-Reply-To: Subject: [PATCH] of: property: fw_devlink: fixup return value check of strcmp_suffix in parse_gpios MIME-Version: 1.0 Importance: Medium User-Agent: Zoho Mail X-Mailer: Zoho Mail Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: Li Chen This commit addresses an issue where enabling fw_devlink=on was causing a PCIe malfunction, resulting in endpoints missing. After thorough investigation, it was determined that the root cause was an incorrect usage of strcmp_suffix in parse_gpios. Fixes: d473d32c2fba ("of: property: fw_devlink: do not link ".*,nr-gpios"") Signed-off-by: Li Chen --- drivers/of/property.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/of/property.c b/drivers/of/property.c index ddc75cd50825..261eb8f3be08 100644 --- a/drivers/of/property.c +++ b/drivers/of/property.c @@ -1272,7 +1272,7 @@ DEFINE_SUFFIX_PROP(gpio, "-gpio", "#gpio-cells") static struct device_node *parse_gpios(struct device_node *np, const char *prop_name, int index) { - if (!strcmp_suffix(prop_name, ",nr-gpios")) + if (strcmp_suffix(prop_name, ",nr-gpios")) return NULL; return parse_suffix_prop_cells(np, prop_name, index, "-gpios",