From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [RFC PATCH] net: mdio: of: of_find_mii_timestamper() can be static Date: Sat, 1 Jun 2019 01:24:01 +0800 Message-ID: <20190531172401.GA73874@lkp-kbuild06> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: Sender: netdev-owner@vger.kernel.org To: Richard Cochran Cc: kbuild-all@01.org, netdev@vger.kernel.org, David Miller , devicetree@vger.kernel.org, Andrew Lunn , Florian Fainelli , Jacob Keller , Mark Rutland , Miroslav Lichvar , Rob Herring , Willem de Bruijn List-Id: devicetree@vger.kernel.org Fixes: 500a41a402da ("net: mdio: of: Register discovered MII time stampers.") Signed-off-by: kbuild test robot --- of_mdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c index 255f47d..1251d73 100644 --- a/drivers/of/of_mdio.c +++ b/drivers/of/of_mdio.c @@ -43,7 +43,7 @@ static int of_get_phy_id(struct device_node *device, u32 *phy_id) return -EINVAL; } -struct mii_timestamper *of_find_mii_timestamper(struct device_node *node) +static struct mii_timestamper *of_find_mii_timestamper(struct device_node *node) { struct of_phandle_args arg; int err;