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=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS 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 68441C433DF for ; Wed, 8 Jul 2020 17:13:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4A6BD2065F for ; Wed, 8 Jul 2020 17:13:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730773AbgGHRM7 (ORCPT ); Wed, 8 Jul 2020 13:12:59 -0400 Received: from vps0.lunn.ch ([185.16.172.187]:53578 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726227AbgGHRM6 (ORCPT ); Wed, 8 Jul 2020 13:12:58 -0400 Received: from andrew by vps0.lunn.ch with local (Exim 4.94) (envelope-from ) id 1jtDM3-004CzI-3V; Wed, 08 Jul 2020 18:55:31 +0200 Date: Wed, 8 Jul 2020 18:55:31 +0200 From: Andrew Lunn To: Florian Fainelli Cc: netdev@vger.kernel.org, Heiner Kallweit , Russell King , "David S. Miller" , Jakub Kicinski , Michal Kubecek , open list Subject: Re: [PATCH net-next 2/2] net: phy: Uninline PHY ethtool statistics operations Message-ID: <20200708165531.GF928075@lunn.ch> References: <20200708164625.40180-1-f.fainelli@gmail.com> <20200708164625.40180-3-f.fainelli@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200708164625.40180-3-f.fainelli@gmail.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 08, 2020 at 09:46:25AM -0700, Florian Fainelli wrote: > Now that we have moved the PHY ethtool statistics to be dynamically > registered, we no longer need to inline those for ethtool. This used to > be done to avoid cross symbol referencing and allow ethtool to be > decoupled from PHYLIB entirely. > > Signed-off-by: Florian Fainelli Reviewed-by: Andrew Lunn Andrew