From patchwork Wed Dec 6 10:21:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 10095249 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B3AFA60567 for ; Wed, 6 Dec 2017 10:23:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A31F429C8C for ; Wed, 6 Dec 2017 10:23:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9848C29CA1; Wed, 6 Dec 2017 10:23:45 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 30D5829C8C for ; Wed, 6 Dec 2017 10:23:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754793AbdLFKXn (ORCPT ); Wed, 6 Dec 2017 05:23:43 -0500 Received: from kirsty.vergenet.net ([202.4.237.240]:47467 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754878AbdLFKXm (ORCPT ); Wed, 6 Dec 2017 05:23:42 -0500 Received: from penelope.horms.nl (unknown [217.111.208.18]) by kirsty.vergenet.net (Postfix) with ESMTPA id 0195225BED4; Wed, 6 Dec 2017 21:23:18 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1512555798; bh=0qVKu0W6DOAI8L9PobSo97CC8eg6ZsbzYreV8bUOjgM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gQ79jJe+Z6vLwulULY8Vrn/7qf3uWGZuPjgvG7CxodQdDogVG94oyyBbGjCdPNhKT 5AgxoxqyRbGv3LYWR5oUUWOl0PEbXVBpv2fPgAm3EPGNlmKCd1HoiC8Zw4J0TR3p3Q P7u+ih6cQKcGVFcmVtNqy0Y/loQvTIsuZitPd5HA= Received: by penelope.horms.nl (Postfix, from userid 7100) id CE265E20B3C; Wed, 6 Dec 2017 11:22:58 +0100 (CET) From: Simon Horman To: linux-renesas-soc@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, Magnus Damm , Simon Horman Subject: [PATCH 03/61] ARM: dts: r8a7778: Use R-Car Gen1 Ether fallback compat string Date: Wed, 6 Dec 2017 11:21:58 +0100 Message-Id: <1bfd944483b209c577fa50cc981b4f959a287f83.1512555546.git.horms+renesas@verge.net.au> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Use newly added R-Car Gen1 Ether fallback compat string in the DT of the r8a7778 SoC. This should have no run-time effect as the driver matches against the per-SoC compat string before considering the fallback compat string. Signed-off-by: Simon Horman Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r8a7778.dtsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/r8a7778.dtsi b/arch/arm/boot/dts/r8a7778.dtsi index a39472aab867..d6e3c0400ec3 100644 --- a/arch/arm/boot/dts/r8a7778.dtsi +++ b/arch/arm/boot/dts/r8a7778.dtsi @@ -51,7 +51,8 @@ }; ether: ethernet@fde00000 { - compatible = "renesas,ether-r8a7778"; + compatible = "renesas,ether-r8a7778", + "renesas,rcar-gen1-ether"; reg = <0xfde00000 0x400>; interrupts = ; clocks = <&mstp1_clks R8A7778_CLK_ETHER>;