summaryrefslogtreecommitdiffstats
path: root/include/of_net.h
blob: 4e23deb28e458458c510db369d5ecf9639149724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * OF helpers for network devices.
 */

#ifndef __LINUX_OF_NET_H
#define __LINUX_OF_NET_H

#include <linux/types.h>
#include <of.h>

#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 */