[][MAC80211][mt76][Change panther's prek info encoded mask to be compatible with eagle]

[Description]
Change panther's prek info encoding mask to be compatible with eagle

[Release-log]
N/A

Change-Id: I0a4cad0e0659fc53590909ca34cdbc603ade0084
Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/7329679
diff --git a/autobuild_mac80211_release/package/kernel/mt76/patches/1011-wifi-mt76-testmode-add-pre-cal-support.patch b/autobuild_mac80211_release/package/kernel/mt76/patches/1011-wifi-mt76-testmode-add-pre-cal-support.patch
index 82a210f..54a0f22 100644
--- a/autobuild_mac80211_release/package/kernel/mt76/patches/1011-wifi-mt76-testmode-add-pre-cal-support.patch
+++ b/autobuild_mac80211_release/package/kernel/mt76/patches/1011-wifi-mt76-testmode-add-pre-cal-support.patch
@@ -559,10 +559,10 @@
 +static int
 +mt7915_tm_dump_precal(struct mt76_phy *mphy, struct sk_buff *msg, int flag, int type)
 +{
-+#define DPD_PER_CHAN_SIZE_MASK		GENMASK(31, 24)
-+#define DPD_CHAN_NUM_2G_MASK		GENMASK(23, 16)
-+#define DPD_CHAN_NUM_5G_MASK		GENMASK(15, 8)
-+#define DPD_CHAN_NUM_6G_MASK		GENMASK(7, 0)
++#define DPD_PER_CHAN_SIZE_MASK		GENMASK(31, 30)
++#define DPD_CHAN_NUM_2G_MASK		GENMASK(29, 20)
++#define DPD_CHAN_NUM_5G_MASK		GENMASK(19, 10)
++#define DPD_CHAN_NUM_6G_MASK		GENMASK(9, 0)
 +	struct mt7915_phy *phy = mphy->priv;
 +	struct mt7915_dev *dev = phy->dev;
 +	u32 i, group_size, dpd_size, total_size, dpd_per_chan_size, dpd_info = 0;