/* SPDX-License-Identifier: GPL-2.0-only */ /* * OF helpers for network devices. */ #ifndef __LINUX_OF_NET_H #define __LINUX_OF_NET_H #include #include #ifdef CONFIG_OFTREE int of_get_mac_addr_nvmem(struct device_node *np, u8 *addr); int of_get_mac_address(struct device_node *np, u8 *addr); int of_get_phy_mode(struct device_node *np); #else static inline int of_get_mac_addr_nvmem(struct device_node *np, u8 *addr) { return -ENOSYS; } static inline int of_get_mac_address(struct device_node *np, u8 *addr) { return -ENOSYS; } static inline int of_get_phy_mode(struct device_node *np) { return -ENOSYS; } #endif #endif /* __LINUX_OF_NET_H */