wlan : Fix wrong logic which modifies MAC address.

This change fixes the regression caused by CR 681884.
There is wrong logic in code which modify the WLAN's MAC.
The code uses ' &=0x02 ' which modify the WLAN MAC in
hdd_wlan_startup.

Change-Id: I368b17623fe71b6d8eaddcd849a2d900423b058d
CRs-Fixed: 754576
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index da71d0c..7acc6a7 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -9052,7 +9052,7 @@
          wlan_hdd_get_intf_addr(pHddCtx), FALSE );
      if (pAdapter != NULL)
      {
-         if (pHddCtx->cfg_ini->isP2pDeviceAddrAdministrated && !(pHddCtx->cfg_ini->intfMacAddr[0].bytes[0] &= 0x02))
+         if (pHddCtx->cfg_ini->isP2pDeviceAddrAdministrated && !(pHddCtx->cfg_ini->intfMacAddr[0].bytes[0] & 0x02))
          {
                vos_mem_copy( pHddCtx->p2pDeviceAddress.bytes,
                        pHddCtx->cfg_ini->intfMacAddr[0].bytes,