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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=no 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 86AF4ECE58D for ; Thu, 17 Oct 2019 22:23:03 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 45FAD21D7A for ; Thu, 17 Oct 2019 22:23:03 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="fl0XflIj" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 45FAD21D7A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bootlin.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=AYiFwVeYj5avsDvnvE0+6Sur6cpiDjZZgB9m7UBpyfs=; b=fl0XflIjAVzlcq elJeQZF/r4p9vAjkegWIezDKgG4D4XIqfSqkzyxlPfmhBwKlfJbMynF6j7EhG5GKzMTeQWpsclvFm P79qhVGxhP0VMO3kElXzdQHfM0GFTCNZubOZA047szFFFAMMitY5g5onmYtUcMKHD5G5kgdfKp9h2 ZFVrZqNvYHbts3k8TWhGqJIQMBqLiExczoOhkr/tFVuhjQTa0NoOK7n+cWgEDlv42ppZXDaCbrHgP ksIQRVXFAxRiHpPktraqJl9lUAVhCQPhWIPbA+19jsmIE9AGlKvkjxBr04Kys0v6reV2HId6z6hSI mtkvmamsCDrF/Pyz14qQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iLEAS-0003R8-9K; Thu, 17 Oct 2019 22:22:48 +0000 Received: from relay5-d.mail.gandi.net ([217.70.183.197]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1iLEAN-0003Oh-1V for linux-arm-kernel@lists.infradead.org; Thu, 17 Oct 2019 22:22:46 +0000 X-Originating-IP: 86.202.229.42 Received: from localhost (lfbn-lyo-1-146-42.w86-202.abo.wanadoo.fr [86.202.229.42]) (Authenticated sender: alexandre.belloni@bootlin.com) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 312971C0003; Thu, 17 Oct 2019 22:22:32 +0000 (UTC) From: Alexandre Belloni To: "David S . Miller" Subject: [PATCH net-next v3 0/2] net: lpc_eth: parse phy nodes from device tree Date: Fri, 18 Oct 2019 00:22:29 +0200 Message-Id: <20191017222231.29122-1-alexandre.belloni@bootlin.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20191017_152243_217158_7025B7CB X-CRM114-Status: UNSURE ( 7.33 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Andrew Lunn , Alexandre Belloni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Vladimir Zapolskiy , Sylvain Lemieux , linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org Allow describing connected phys using device tree. This solves issues finding the phy on the mdio bus and allows decribing the interrupt line the phy is possibly connected to. Changes in v3: - rebased on net-next - collected Reviewed-by Changes in v2: - move the phy decription in the mdio subnode. Alexandre Belloni (2): dt-bindings: net: lpc-eth: document optional properties net: lpc_eth: parse phy nodes from device tree .../devicetree/bindings/net/lpc-eth.txt | 5 ++++ drivers/net/ethernet/nxp/lpc_eth.c | 28 +++++++++++++------ 2 files changed, 25 insertions(+), 8 deletions(-) -- 2.21.0 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel