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 DB0D3C742B9 for ; Fri, 12 Jul 2019 12:28:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AB4A521721 for ; Fri, 12 Jul 2019 12:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1562934514; bh=2PGtoNThi1wmNK2eDCwm4czO2PFAuK2r3v/tdgqCp+Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=p0a8fIcXX2jojLtYVa6aPdlLU/6TcB9f01zPDoeHfnXOoC1iTiwz34Nqfj2ZY451w Fz6nYcI/Bqd7l1nP+oYx38+YkKeSycaZq/RbKsEcyrOe0mgG1FjqxjH0+CsvMACKRa fEGZN6XS7txCrR8r+EZvKv8SFCNbhsmyjkns9sYM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728835AbfGLM23 (ORCPT ); Fri, 12 Jul 2019 08:28:29 -0400 Received: from mail.kernel.org ([198.145.29.99]:42448 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728831AbfGLM23 (ORCPT ); Fri, 12 Jul 2019 08:28:29 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 4DC4E21670; Fri, 12 Jul 2019 12:28:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1562934508; bh=2PGtoNThi1wmNK2eDCwm4czO2PFAuK2r3v/tdgqCp+Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YS3fQ+xI1RVmuTIAznlD5pHkKdN++jGqiibw8QimPQqWanMDOX/w6fqq5mccNU83C zY4hmsyFtuRVTU8zwTzstuQq8rWLkyFL2dZg/3Xc4FqAOWQJo1OJSfxCkzjdJ03we4 T6nqMDlzk+7r3/NCOL20t9kRoIkqFE4A4b2PfqBg= 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 5.1 034/138] dt-bindings: can: mcp251x: add mcp25625 support Date: Fri, 12 Jul 2019 14:18:18 +0200 Message-Id: <20190712121630.000329920@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190712121628.731888964@linuxfoundation.org> References: <20190712121628.731888964@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 188c8bd4eb67..5a0111d4de58 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. - interrupts: Should contain IRQ line for the CAN controller. -- 2.20.1