diff options
| author | Maximilian Baumgartner | 2026-01-15 22:46:46 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-01-18 10:37:52 +0000 |
| commit | 82f4ee5656d0126de24cf1cc2197c4194a31d6e9 (patch) | |
| tree | 2106bedeef0ea0a21379733f195fb06cb14b3a72 | |
| parent | dcf11c832a95595e6b919b88d6cd649bd9343a1f (diff) | |
| download | openwrt-82f4ee5656d0126de24cf1cc2197c4194a31d6e9.tar.gz | |
mediatek: fix gmac definition for cudy m3000
The gmac definition has an offset of 1 compared to the label MAC.
Fixes: a55ab9e1343e85021253e9c55f67adf33ad68f09 ("mediatek: filogic: prevent faulty mac address assignment")
Signed-off-by: Maximilian Baumgartner <aufhaxer@googlemail.com>
Link: https://github.com/openwrt/openwrt/pull/21560
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 687a2535d55f84a0daa2038b7e8736313cb2804e)
| -rw-r--r-- | target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts b/target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts index cfe9d45630..3928740b9b 100644 --- a/target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts +++ b/target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts @@ -86,7 +86,7 @@ phy-handle = <&rtl8221b_phy>; nvmem-cell-names = "mac-address"; - nvmem-cells = <&macaddr_bdinfo_de00 1>; + nvmem-cells = <&macaddr_bdinfo_de00 0>; }; gmac1: mac@1 { @@ -96,7 +96,7 @@ phy-handle = <&int_gbe_phy>; nvmem-cell-names = "mac-address"; - nvmem-cells = <&macaddr_bdinfo_de00 0>; + nvmem-cells = <&macaddr_bdinfo_de00 1>; }; }; |