1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * phylib header 4 */ 5 6 #ifndef __PHYLIB_H 7 #define __PHYLIB_H 8 9 struct device_node; 10 struct phy_device; 11 12 struct device_node *phy_package_get_node(struct phy_device *phydev); 13 void *phy_package_get_priv(struct phy_device *phydev); 14 15 #endif /* __PHYLIB_H */ 16