ethernet: Add missing BEGIN_DECLS / END_DECLS

This commit is contained in:
Gregory Schlomoff 2017-04-10 11:09:21 -07:00 committed by Karl Palsson
parent 329b611e4f
commit 88ca8058aa

View File

@ -79,6 +79,8 @@ enum phy_status {
LINK_FD_10000M,
};
BEGIN_DECLS
void phy_reset(uint8_t phy);
bool phy_link_isup(uint8_t phy);
@ -87,6 +89,8 @@ enum phy_status phy_link_status(uint8_t phy);
void phy_autoneg_force(uint8_t phy, enum phy_status mode);
void phy_autoneg_enable(uint8_t phy);
END_DECLS
/**@}*/