1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * OF helpers for network devices.
6 #ifndef __LINUX_OF_NET_H
7 #define __LINUX_OF_NET_H
15 extern int of_get_phy_mode(struct device_node *np, phy_interface_t *interface);
16 extern int of_get_mac_address(struct device_node *np, u8 *mac);
17 extern struct net_device *of_find_net_device_by_node(struct device_node *np);
19 static inline int of_get_phy_mode(struct device_node *np,
20 phy_interface_t *interface)
25 static inline int of_get_mac_address(struct device_node *np, u8 *mac)
30 static inline struct net_device *of_find_net_device_by_node(struct device_node *np)
36 #endif /* __LINUX_OF_NET_H */