summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2018-08-09 15:46:25 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2018-08-10 08:41:52 +0200
commitf4d74a52a7d43c4973dc3996bc69d1956a6b304d (patch)
tree2907955b8940204f80c8d1110dd18da30f4caa9d /net
parent68de5efb38fd2f38fa3f59c26fd07fa3b1180186 (diff)
downloadbarebox-f4d74a52a7d43c4973dc3996bc69d1956a6b304d.tar.gz
barebox-f4d74a52a7d43c4973dc3996bc69d1956a6b304d.tar.xz
net: eth: Make use of ETH_ALEN
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'net')
-rw-r--r--net/eth.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/net/eth.c b/net/eth.c
index 5d45a04612..9dc4411952 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -40,7 +40,7 @@ LIST_HEAD(netdev_list);
struct eth_ethaddr {
struct list_head list;
- u8 ethaddr[6];
+ u8 ethaddr[ETH_ALEN];
int ethid;
struct device_node *node;
};
@@ -82,7 +82,7 @@ static int eth_get_registered_ethaddr(struct eth_device *edev, void *buf)
list_for_each_entry(addr, &ethaddr_list, list) {
if ((node && node == addr->node) ||
addr->ethid == edev->dev.id) {
- memcpy(buf, addr->ethaddr, 6);
+ memcpy(buf, addr->ethaddr, ETH_ALEN);
return 0;
}
}
@@ -118,7 +118,7 @@ void eth_register_ethaddr(int ethid, const char *ethaddr)
addr = xzalloc(sizeof(*addr));
addr->ethid = ethid;
- memcpy(addr->ethaddr, ethaddr, 6);
+ memcpy(addr->ethaddr, ethaddr, ETH_ALEN);
list_add_tail(&addr->list, &ethaddr_list);
}
@@ -150,7 +150,7 @@ void of_eth_register_ethaddr(struct device_node *node, const char *ethaddr)
addr = xzalloc(sizeof(*addr));
addr->node = node;
- memcpy(addr->ethaddr, ethaddr, 6);
+ memcpy(addr->ethaddr, ethaddr, ETH_ALEN);
list_add_tail(&addr->list, &ethaddr_list);
}
@@ -284,7 +284,7 @@ static int eth_param_set_ethaddr(struct param_d *param, void *priv)
#ifdef CONFIG_OFTREE
static void eth_of_fixup_node(struct device_node *root,
const char *node_path, int ethid,
- const u8 ethaddr[6])
+ const u8 ethaddr[ETH_ALEN])
{
struct device_node *node;
int ret;
@@ -308,7 +308,7 @@ static void eth_of_fixup_node(struct device_node *root,
return;
}
- ret = of_set_property(node, "mac-address", ethaddr, 6, 1);
+ ret = of_set_property(node, "mac-address", ethaddr, ETH_ALEN, 1);
if (ret)
pr_err("Setting mac-address property of %s failed with: %s\n",
node->full_name, strerror(-ret));
@@ -355,7 +355,7 @@ static const char * const eth_mode_names[] = {
int eth_register(struct eth_device *edev)
{
struct device_d *dev = &edev->dev;
- unsigned char ethaddr[6];
+ unsigned char ethaddr[ETH_ALEN];
int ret, found = 0;
if (!edev->get_ethaddr) {