From d79f39ea2acc8daba5b9d5e56061ed741bc70d4c Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 19:04:33 +0000 Subject: [PATCH] Enable PHYDM_MP_SUPPORT for RTL8822B to fix linking error This commit enables PHYDM_MP_SUPPORT in `hal/phydm/phydm_features_ce.h` when `RTL8822B_SUPPORT` is defined. This is necessary because `phydm_mp_set_single_tone` is guarded by `PHYDM_MP_SUPPORT` in `hal/phydm/phydm_mp.c`, and its usage in `rtw_proc.c` caused a linking error. --- hal/phydm/phydm_features_ce.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hal/phydm/phydm_features_ce.h b/hal/phydm/phydm_features_ce.h index 24f3772..7a590a5 100644 --- a/hal/phydm/phydm_features_ce.h +++ b/hal/phydm/phydm_features_ce.h @@ -99,11 +99,11 @@ #define PHYDM_POWER_TRAINING_SUPPORT #endif -#if (RTL8822C_SUPPORT || RTL8814B_SUPPORT || RTL8723F_SUPPORT) +#if (RTL8822C_SUPPORT || RTL8814B_SUPPORT || RTL8723F_SUPPORT || RTL8822B_SUPPORT) #define PHYDM_PMAC_TX_SETTING_SUPPORT #endif -#if (RTL8822C_SUPPORT || RTL8814B_SUPPORT || RTL8723F_SUPPORT) +#if (RTL8822C_SUPPORT || RTL8814B_SUPPORT || RTL8723F_SUPPORT || RTL8822B_SUPPORT) #define PHYDM_MP_SUPPORT #endif