wlan: Set the driver capability flag WIPHY_FLAG_SUPPORTS_FW_ROAM

We need to make sure the supplicant knows that we are a driver that is
capable of initiating roaming. The driver capability flag
WIPHY_FLAG_SUPPORTS_FW_ROAM is used to indicate that. Therefore, set
WIPHY_FLAG_SUPPORTS_FW_ROAM in wlan_hdd_cfg80211_register().

CRs-Fixed: 439524
Change-Id: I8f33061659f8491542a1493e87d19d4d1e7ec4fa
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c
index d82f82a..31b3dd6 100644
--- a/CORE/HDD/src/wlan_hdd_cfg80211.c
+++ b/CORE/HDD/src/wlan_hdd_cfg80211.c
@@ -529,6 +529,9 @@
                  |  WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
                     | WIPHY_FLAG_OFFCHAN_TX;
 #endif
+#ifdef FEATURE_WLAN_LFR
+    wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
+#endif
 #ifdef FEATURE_WLAN_TDLS
     wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS
                  |  WIPHY_FLAG_TDLS_EXTERNAL_SETUP;