wlan: Set correct CB mode for channel 165.

The driver setting the incorrect channel bonding mode
causing the firmware to crash, for channel 165 CB mode should
be zero but the driver sets the CB mode as 6.
Modify the driver to set the CB mode to zero for channel 165.

CRs-Fixed: 451173
Change-Id: I75676c4b1dec371151106820f4046a20d4255d8b
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c
index cfbbede..a7824ab 100755
--- a/CORE/HDD/src/wlan_hdd_cfg80211.c
+++ b/CORE/HDD/src/wlan_hdd_cfg80211.c
@@ -1549,6 +1549,10 @@
            smeConfig.csrConfig.channelBondingMode5GHz = 
                           PHY_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_HIGH - 1;
         }
+        else if ( channel == 165 )
+        {
+           smeConfig.csrConfig.channelBondingMode5GHz = 0;
+        }
     }
 #endif
     if ( SapHw_mode == eSAP_DOT11_MODE_11n ||
@@ -1568,6 +1572,10 @@
         {
            smeConfig.csrConfig.channelBondingMode5GHz = 2;
         }
+        else if ( channel == 165 )
+        {
+           smeConfig.csrConfig.channelBondingMode5GHz = 0;
+        }
     }
     pr_info ("cbmode selected=%ld\n",smeConfig.csrConfig.channelBondingMode5GHz);