diff options
| -rw-r--r-- | core/hdd/src/wlan_hdd_nan_datapath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/hdd/src/wlan_hdd_nan_datapath.c b/core/hdd/src/wlan_hdd_nan_datapath.c index ecaa09979ad1..90a72a179bc8 100644 --- a/core/hdd/src/wlan_hdd_nan_datapath.c +++ b/core/hdd/src/wlan_hdd_nan_datapath.c @@ -451,8 +451,8 @@ static int hdd_ndi_create_req_handler(hdd_context_t *hdd_ctx, * does not have any such formal requests. The NDI create request * is responsible for starting the BSS as well. */ - if (op_channel != NAN_SOCIAL_CHANNEL_2_4GHZ || - op_channel != NAN_SOCIAL_CHANNEL_5GHZ_LOWER_BAND || + if (op_channel != NAN_SOCIAL_CHANNEL_2_4GHZ && + op_channel != NAN_SOCIAL_CHANNEL_5GHZ_LOWER_BAND && op_channel != NAN_SOCIAL_CHANNEL_5GHZ_UPPER_BAND) { /* start NDI on the default 2.4 GHz social channel */ op_channel = NAN_SOCIAL_CHANNEL_2_4GHZ; |
