|
@@ -29,6 +29,7 @@ struct phy_device *of_phy_attach(struct net_device *dev,
|
|
extern struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
|
|
extern struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
|
|
extern int of_mdio_parse_addr(struct device *dev, const struct device_node *np);
|
|
extern int of_mdio_parse_addr(struct device *dev, const struct device_node *np);
|
|
extern int of_phy_register_fixed_link(struct device_node *np);
|
|
extern int of_phy_register_fixed_link(struct device_node *np);
|
|
|
|
+extern void of_phy_deregister_fixed_link(struct device_node *np);
|
|
extern bool of_phy_is_fixed_link(struct device_node *np);
|
|
extern bool of_phy_is_fixed_link(struct device_node *np);
|
|
|
|
|
|
#else /* CONFIG_OF */
|
|
#else /* CONFIG_OF */
|
|
@@ -83,6 +84,9 @@ static inline int of_phy_register_fixed_link(struct device_node *np)
|
|
{
|
|
{
|
|
return -ENOSYS;
|
|
return -ENOSYS;
|
|
}
|
|
}
|
|
|
|
+static inline void of_phy_deregister_fixed_link(struct device_node *np)
|
|
|
|
+{
|
|
|
|
+}
|
|
static inline bool of_phy_is_fixed_link(struct device_node *np)
|
|
static inline bool of_phy_is_fixed_link(struct device_node *np)
|
|
{
|
|
{
|
|
return false;
|
|
return false;
|