Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933118AbcCKRcD (ORCPT ); Fri, 11 Mar 2016 12:32:03 -0500 Received: from vps0.lunn.ch ([178.209.37.122]:54916 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932124AbcCKRcA (ORCPT ); Fri, 11 Mar 2016 12:32:00 -0500 Date: Fri, 11 Mar 2016 18:31:25 +0100 From: Andrew Lunn To: David Daney Cc: "David S. Miller" , netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Florian Fainelli , Robert Richter , Sunil Goutham , Kumar Gala , Ian Campbell , Mark Rutland , Pawel Moll , Rob Herring , Radha Mohan Chintakuntla , linux-kernel@vger.kernel.org, David Daney Subject: Re: [PATCH 1/3] net: thunderx: Cleanup PHY probing code. Message-ID: <20160311173125.GI3153@lunn.ch> References: <1457714822-5754-1-git-send-email-ddaney.cavm@gmail.com> <1457714822-5754-2-git-send-email-ddaney.cavm@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1457714822-5754-2-git-send-email-ddaney.cavm@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 400 Lines: 14 > + phy_np = of_parse_phandle(node, "phy-handle", 0); > + /* If there is no phy or defective firmware presents > + * this cortina phy, for which there is no driver > + * support, ignore it. > + */ > + if (phy_np && > + !of_device_is_compatible(phy_np, "cortina,cs4223-slice")) { Hi David What is a cortina,cs4223-slice, and why does it need to be handled differently? Thanks Andrew