diff options
author | David Bauer <mail@david-bauer.net> | 2021-07-29 08:45:24 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2021-07-29 08:51:08 +0200 |
commit | 9928236d16291cb7a7d40265454b6a23e9e03e7f (patch) | |
tree | ff8fe985b0bba04bc71aecd12721896960a3e637 /target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch | |
parent | cd39aba402ea7e7a11e173b0b5aa96e42bf1f2ac (diff) | |
download | upstream-9928236d16291cb7a7d40265454b6a23e9e03e7f.tar.gz upstream-9928236d16291cb7a7d40265454b6a23e9e03e7f.tar.bz2 upstream-9928236d16291cb7a7d40265454b6a23e9e03e7f.zip |
generic: fix compile-error for non-mtd platforms
Fixes commit cd39aba402ea ("generic: write back netdev MAC-address to device-tree")
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch')
-rw-r--r-- | target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch b/target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch index 3e331bac63..5d1f05af7f 100644 --- a/target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch +++ b/target/linux/generic/pending-5.10/683-of_net-add-mac-address-to-of-tree.patch @@ -1,7 +1,7 @@ --- a/drivers/of/of_net.c +++ b/drivers/of/of_net.c -@@ -132,6 +132,33 @@ static void *of_get_mac_address_mtd(stru - #endif +@@ -133,6 +133,33 @@ static void *of_get_mac_address_mtd(stru + return NULL; } +static int of_add_mac_address(struct device_node *np, u8* addr) @@ -34,7 +34,7 @@ /** * Search the device tree for the best MAC address to use. 'mac-address' is -@@ -205,6 +232,7 @@ found: +@@ -206,6 +233,7 @@ found: if (!of_property_read_u32(np, "mac-address-increment", &mac_inc)) addr[inc_idx] += mac_inc; |