From: Michal Simek Date: Wed, 28 Oct 2015 10:07:48 +0000 (+0100) Subject: phy: ti: Add missing function declaration to phy.h X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=add9e2201d88b6ef5efd7d9d77e39145bc549b4c;p=thirdparty%2Fu-boot.git phy: ti: Add missing function declaration to phy.h Fix compilation warning: drivers/net/phy/phy.c: In function ‘phy_init’: drivers/net/phy/phy.c:488:2: warning: implicit declaration of function ‘phy_ti_init’ [-Wimplicit-function-declaration] phy_ti_init(); ^ Signed-off-by: Michal Simek --- diff --git a/include/phy.h b/include/phy.h index 3f826b66f71..66cf61bdfb9 100644 --- a/include/phy.h +++ b/include/phy.h @@ -251,6 +251,7 @@ int phy_natsemi_init(void); int phy_realtek_init(void); int phy_smsc_init(void); int phy_teranetics_init(void); +int phy_ti_init(void); int phy_vitesse_init(void); int board_phy_config(struct phy_device *phydev);