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=ham 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 804BFC76186 for ; Thu, 18 Jul 2019 03:09:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 58D452077C for ; Thu, 18 Jul 2019 03:09:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419391; bh=dAh+zuNthGs12/kWyN/jbJWspHyKM2RO7mBtFnSFE7k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=yr4nfhfMjsu+FQbIs6ygbGXiKoCiXwv1rJkqkiootXEBaUet3BnHqsHKXV0/xN5eZ cTwPsUA4kwGhPbMpdtZ6Q+A9/xJj4ekrlUGAHvW1rhhj9RMdZ+JIFz9s4qbvAUXr5r oP/BKtV106jreQnd5rvdSafHPkeWD2OpGpoDGnoA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391082AbfGRDJu (ORCPT ); Wed, 17 Jul 2019 23:09:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:42608 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391052AbfGRDJr (ORCPT ); Wed, 17 Jul 2019 23:09:47 -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 7A94C205F4; Thu, 18 Jul 2019 03:09:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419386; bh=dAh+zuNthGs12/kWyN/jbJWspHyKM2RO7mBtFnSFE7k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=yBiE2Slz+PxMGBVhA59Fua0IJ6mFYiVdtgE6K76SenFQXb4w46HW+YylQqG66uWYk xM75iU8BmoqzTTyHb1n5NWV5kiz+zDP5cVqQQuJhMA1NyieGMxx4fc74pDWDKCfcXZ xsKf2acP0aKrLsGqWCKN6b9Gaz6g5o6P/73WbeJw= 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.14 17/80] dt-bindings: can: mcp251x: add mcp25625 support Date: Thu, 18 Jul 2019 12:01:08 +0900 Message-Id: <20190718030100.162593916@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190718030058.615992480@linuxfoundation.org> References: <20190718030058.615992480@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@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