From patchwork Thu Sep 3 14:42:59 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lad Prabhakar X-Patchwork-Id: 11753831 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 86600109B for ; Thu, 3 Sep 2020 14:43:10 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5E944206EF for ; Thu, 3 Sep 2020 14:43:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="Bcx/iOCP" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5E944206EF Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bp.renesas.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5397+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id f84AYY4521763xzYp1xg61gJ; Thu, 03 Sep 2020 07:43:10 -0700 X-Received: from relmlie6.idc.renesas.com (relmlie6.idc.renesas.com [210.160.252.172]) by mx.groups.io with SMTP id smtpd.web10.15612.1599144189502243808 for ; Thu, 03 Sep 2020 07:43:09 -0700 X-IronPort-AV: E=Sophos;i="5.76,387,1592838000"; d="scan'208";a="56081308" X-Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 03 Sep 2020 23:43:08 +0900 X-Received: from localhost.localdomain (unknown [10.226.36.204]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 3115842D18DA; Thu, 3 Sep 2020 23:43:07 +0900 (JST) From: "Lad Prabhakar" To: cip-dev@lists.cip-project.org, Nobuhiro Iwamatsu , Pavel Machek Cc: Biju Das Subject: [cip-dev] [PATCH 4.4.y-cip 2/6] sh_eth: Add compatible string for R8A7742 SoC Date: Thu, 3 Sep 2020 15:42:59 +0100 Message-Id: <20200903144303.13275-3-prabhakar.mahadev-lad.rj@bp.renesas.com> In-Reply-To: <20200903144303.13275-1-prabhakar.mahadev-lad.rj@bp.renesas.com> References: <20200903144303.13275-1-prabhakar.mahadev-lad.rj@bp.renesas.com> Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: UTGgqkul3swxdqTLuzbRetMmx4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1599144190; bh=QCn+R/NZq31D6uwRVGwtA59p9FTWBBFC+7wEIwrqa5A=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=Bcx/iOCPTiL8yhCAfvc1+18wdnZFc1l3+1CW0d62Eu+rBP+5N02y85HpovBwxqiI9fs +Sw11A5Hne035jswVjaqryHmcsoV4cH7259QiVNiPbVpM9dilVkaMpoh4EdlnlizP+mLn R+kqv51aiJD7u0mUA1FupdC+WF1S5wm9zaQ= Add "renesas,ether-r8a7742" to compatible list of sh_eth driver. Signed-off-by: Lad Prabhakar --- drivers/net/ethernet/renesas/sh_eth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c index 15866e372b8c..ecccf5220fd4 100644 --- a/drivers/net/ethernet/renesas/sh_eth.c +++ b/drivers/net/ethernet/renesas/sh_eth.c @@ -3065,6 +3065,7 @@ static struct sh_eth_plat_data *sh_eth_parse_dt(struct device *dev) static const struct of_device_id sh_eth_match_table[] = { { .compatible = "renesas,gether-r8a7740", .data = &r8a7740_data }, + { .compatible = "renesas,ether-r8a7742", .data = &r8a779x_data }, { .compatible = "renesas,ether-r8a7743", .data = &r8a779x_data }, { .compatible = "renesas,ether-r8a7745", .data = &r8a779x_data }, { .compatible = "renesas,ether-r8a7778", .data = &r8a777x_data },