From patchwork Wed Nov 27 15:39:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grygorii Strashko X-Patchwork-Id: 1201674 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=quarantine dis=none) header.from=ti.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="Gug+HMXC"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 47NQ1w6xxqz9sTQ for ; Thu, 28 Nov 2019 02:39:48 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727008AbfK0Pjr (ORCPT ); Wed, 27 Nov 2019 10:39:47 -0500 Received: from lelv0143.ext.ti.com ([198.47.23.248]:45908 "EHLO lelv0143.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726729AbfK0Pjr (ORCPT ); Wed, 27 Nov 2019 10:39:47 -0500 Received: from lelv0265.itg.ti.com ([10.180.67.224]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id xARFdcwh078476; Wed, 27 Nov 2019 09:39:38 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1574869178; bh=Psyf7mTJ+jSTqnRUbqkBC0f+Z6J0CTi9u7TTpexnusY=; h=From:To:CC:Subject:Date; b=Gug+HMXCOXvtL1j7EJtwWaS8jwkdvec7geM0AvaUwFLqrLUuGx9gicfbPxB9UUv2C YePqdFMeqqV9essK/IrTH0jORl2uyfDrOlRds98hSg7/MSrO93Xe5DSSLaFnIOXQFz Uj92QTISNPu1RS5Z79c++emq3v5N2GcMUeb/TNCQ= Received: from DLEE111.ent.ti.com (dlee111.ent.ti.com [157.170.170.22]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id xARFdc06062892 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 27 Nov 2019 09:39:38 -0600 Received: from DLEE108.ent.ti.com (157.170.170.38) by DLEE111.ent.ti.com (157.170.170.22) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1847.3; Wed, 27 Nov 2019 09:39:38 -0600 Received: from lelv0327.itg.ti.com (10.180.67.183) by DLEE108.ent.ti.com (157.170.170.38) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1847.3 via Frontend Transport; Wed, 27 Nov 2019 09:39:38 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id xARFdbOP083678; Wed, 27 Nov 2019 09:39:38 -0600 From: Grygorii Strashko To: "David S. Miller" , Andrew Lunn , Florian Fainelli , Heiner Kallweit , Rob Herring , Mark Rutland , CC: Simon Horman , , Grygorii Strashko Subject: [PATCH] dt-bindings: net: mdio: use non vendor specific compatible string in example Date: Wed, 27 Nov 2019 17:39:28 +0200 Message-ID: <20191127153928.22408-1-grygorii.strashko@ti.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Use non vendor specific compatible string in example, otherwise DT YAML schemas validation may trigger warnings specific to TI ti,davinci_mdio and not to the generic MDIO example. Signed-off-by: Grygorii Strashko Reviewed-by: Simon Horman --- Documentation/devicetree/bindings/net/mdio.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/net/mdio.yaml b/Documentation/devicetree/bindings/net/mdio.yaml index 5d08d2ffd4eb..524f062c6973 100644 --- a/Documentation/devicetree/bindings/net/mdio.yaml +++ b/Documentation/devicetree/bindings/net/mdio.yaml @@ -56,7 +56,7 @@ patternProperties: examples: - | davinci_mdio: mdio@5c030000 { - compatible = "ti,davinci_mdio"; + compatible = "vendor,mdio"; reg = <0x5c030000 0x1000>; #address-cells = <1>; #size-cells = <0>;