The reference driver does not seem to enable it by default, only under certain
conditions, e.g. when a .bin file is loaded.
Make it opt-in via a device tree property for now, in case it is needed on some
boards.
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  */
 
 #include <linux/module.h>
+#include <linux/of.h>
 #include <asm/unaligned.h>
 #include "mt76x2.h"
 #include "eeprom.h"
                MT_EE_RF_5G_GRP4_5_RX_HIGH_GAIN,
                MT_EE_RF_5G_GRP4_5_RX_HIGH_GAIN + 1,
        };
+       struct device_node *np = dev->mt76.dev->of_node;
        u8 *eeprom = dev->mt76.eeprom.data;
        u8 prev_grp0[4] = {
                eeprom[MT_EE_TX_POWER_0_START_5G],
        u16 val;
        int i;
 
+       if (!np || !of_property_read_bool(np, "mediatek,eeprom-merge-otp"))
+               return;
+
        if (!mt76x2_has_cal_free_data(dev, efuse))
                return;