2010-10-26 22:07:13 +00:00
|
|
|
/*
|
|
|
|
* OF helpers for network devices.
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_OF_NET_H
|
|
|
|
#define __LINUX_OF_NET_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_OF_NET
|
|
|
|
#include <linux/of.h>
|
2015-03-09 21:31:20 +00:00
|
|
|
|
|
|
|
struct net_device;
|
2013-08-18 11:01:30 +00:00
|
|
|
extern int of_get_phy_mode(struct device_node *np);
|
2010-10-26 22:07:13 +00:00
|
|
|
extern const void *of_get_mac_address(struct device_node *np);
|
2015-03-09 21:31:20 +00:00
|
|
|
extern struct net_device *of_find_net_device_by_node(struct device_node *np);
|
2013-04-02 09:35:07 +00:00
|
|
|
#else
|
2013-08-18 11:01:30 +00:00
|
|
|
static inline int of_get_phy_mode(struct device_node *np)
|
2013-04-02 09:35:07 +00:00
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const void *of_get_mac_address(struct device_node *np)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-09 21:31:20 +00:00
|
|
|
|
|
|
|
static inline struct net_device *of_find_net_device_by_node(struct device_node *np)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-10-26 22:07:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __LINUX_OF_NET_H */
|