diff options
| author | Yang You (UU) <[email protected]> | 2025-12-09 14:56:16 -0800 |
|---|---|---|
| committer | Yang You (UU) <[email protected]> | 2025-12-09 14:56:16 -0800 |
| commit | 8cbb9bca875b3bf2afc8e9337c50e11b3a669333 (patch) | |
| tree | ea49b614f309483dbcebd54ce3e1643776ccd272 | |
| parent | 9e94ebc03d0c81ef490f8fef806767da6d59f985 (diff) | |
fix the bad "smart" GitHub merge
| -rw-r--r-- | network/wlan/WIFICX/drivercode/wifitransition.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/network/wlan/WIFICX/drivercode/wifitransition.cpp b/network/wlan/WIFICX/drivercode/wifitransition.cpp index 9726a59b..41106932 100644 --- a/network/wlan/WIFICX/drivercode/wifitransition.cpp +++ b/network/wlan/WIFICX/drivercode/wifitransition.cpp @@ -40,8 +40,8 @@ template<UINT16 MsgId> struct TransitionTraits; // --- Generic pure-type traits template (add before existing specializations) --- -// WIFIREQUEST typically requires M3 notification, making TPreM3Fn important. -// WIFICX expects M3 -> M4 order under normal conditions; +// WIFIREQUEST always needs M3 notification, so TPreM3Fn is mandatory. +// and WIFICX expectes the M3 then M4 order, so we always execute M3 then M4. // using template parameters to configure parsing, cleanup, M3/M4 steps. // to make sure that all transitions have consistent implementations. template< |
