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 X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A691FC76192 for ; Thu, 18 Jul 2019 03:17:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6B31A2053B for ; Thu, 18 Jul 2019 03:17:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419851; bh=dAh+zuNthGs12/kWyN/jbJWspHyKM2RO7mBtFnSFE7k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=L9Qb9KZc7X1Hox11voGPgQq7rpfT78f1vc/12A/0bGx6Bk/Nje8Yy/aOMhDE0bvyo KYo4rwxA7h3ktdGB2DQ7krwW5TsUnm36NgeuCvvajGi4xOeAbXRUKu2bJ21C/ipoRh hnoyMgF2eJ2NjZXHGXKBGwPzxXqvVidQegK623DQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391818AbfGRDOb (ORCPT ); Wed, 17 Jul 2019 23:14:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:50552 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391808AbfGRDOb (ORCPT ); Wed, 17 Jul 2019 23:14:31 -0400 Received: from localhost (115.42.148.210.bf.2iij.net [210.148.42.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 287BC21851; Thu, 18 Jul 2019 03:14:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419670; bh=dAh+zuNthGs12/kWyN/jbJWspHyKM2RO7mBtFnSFE7k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HAZ7peS3MfbfEx4C7+4gGzqxLBlQ5QL3n7oAoyBL8kOhJQr1Gp3n63dqF8FkfW7+z QQfjws85ax/1/j894ijn2JvNfp/FgY9njMZsOYISwCSfcUPpVBz87GOfaHOXXvzzVA 2FWz2EGyLSPZROsDLcrU6J9vPwIRbwu7WPgnifIA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Sean Nyekjaer , Marc Kleine-Budde , Sasha Levin Subject: [PATCH 4.4 05/40] dt-bindings: can: mcp251x: add mcp25625 support Date: Thu, 18 Jul 2019 12:02:01 +0900 Message-Id: <20190718030040.594610769@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190718030039.676518610@linuxfoundation.org> References: <20190718030039.676518610@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org [ Upstream commit 0df82dcd55832a99363ab7f9fab954fcacdac3ae ] Fully compatible with mcp2515, the mcp25625 have integrated transceiver. This patch add the mcp25625 to the device tree bindings documentation. Signed-off-by: Sean Nyekjaer Signed-off-by: Marc Kleine-Budde Signed-off-by: Sasha Levin --- Documentation/devicetree/bindings/net/can/microchip,mcp251x.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/net/can/microchip,mcp251x.txt b/Documentation/devicetree/bindings/net/can/microchip,mcp251x.txt index ee3723beb701..33b38716b77f 100644 --- a/Documentation/devicetree/bindings/net/can/microchip,mcp251x.txt +++ b/Documentation/devicetree/bindings/net/can/microchip,mcp251x.txt @@ -4,6 +4,7 @@ Required properties: - compatible: Should be one of the following: - "microchip,mcp2510" for MCP2510. - "microchip,mcp2515" for MCP2515. + - "microchip,mcp25625" for MCP25625. - reg: SPI chip select. - clocks: The clock feeding the CAN controller. - interrupt-parent: The parent interrupt controller. -- 2.20.1