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 19BD6C4332F for ; Mon, 14 Nov 2022 13:03:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237727AbiKNNDP (ORCPT ); Mon, 14 Nov 2022 08:03:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57310 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237726AbiKNNDO (ORCPT ); Mon, 14 Nov 2022 08:03:14 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D8B2E2870E for ; Mon, 14 Nov 2022 05:03:13 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 7535E6117E for ; Mon, 14 Nov 2022 13:03:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8652DC433C1; Mon, 14 Nov 2022 13:03:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1668430992; bh=0ov3wHGr7evKOo69+G0XrGuCiIeo/R0reDLsWRceCiw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tL5rmGcCVvTyNG1lbrj2qofA5004ZFvM1urwskAKHRysQ5IAg1YjKx4F7oNg0BEyT G4UYLf2sHHS0lxmvVwJWOgMAvFXzg09sDAcS2ybmUArIF2ZmNC9KgPePZCXmTnz+4J UgpYRjxLs5PFJ9EAlt+Md130JwI5x/Vp+NmQvRMU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Miquel Raynal , Gerhard Engleder , Rob Herring , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.0 060/190] dt-bindings: net: tsnep: Fix typo on generic nvmem property Date: Mon, 14 Nov 2022 13:44:44 +0100 Message-Id: <20221114124501.380293125@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221114124458.806324402@linuxfoundation.org> References: <20221114124458.806324402@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Miquel Raynal [ Upstream commit ec683f02a150b9c4428f08accd387c8c216ea0e5 ] While working on the nvmem description I figured out this file had the "nvmem-cell-names" property name misspelled. Fix the typo, as "nvmem-cells-names" has never existed. Fixes: 603094b2cdb7 ("dt-bindings: net: Add tsnep Ethernet controller") Signed-off-by: Miquel Raynal Reviewed-by: Gerhard Engleder Acked-by: Rob Herring Link: https://lore.kernel.org/r/20221104162147.1288230-1-miquel.raynal@bootlin.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- Documentation/devicetree/bindings/net/engleder,tsnep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/net/engleder,tsnep.yaml b/Documentation/devicetree/bindings/net/engleder,tsnep.yaml index d0e1476e15b5..ccc42cb470da 100644 --- a/Documentation/devicetree/bindings/net/engleder,tsnep.yaml +++ b/Documentation/devicetree/bindings/net/engleder,tsnep.yaml @@ -28,7 +28,7 @@ properties: nvmem-cells: true - nvmem-cells-names: true + nvmem-cell-names: true phy-connection-type: enum: -- 2.35.1