wlan: Set max_sched_scan_ssids value from 9 to 16

Currently driver publishes support for only 9 networks
that can be offloaded to firmware when requesting
PNO scan, while firmware has support for 16 networks
that can be offloaded at a time. This commit increases
the number of sched scan ssids from 9 to 16

Change-Id: Ibf94b00ce901731543bc5c30920e39a8ee5dba89
CRs-fixed: 545628
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c
index 91538cf..eb53553 100644
--- a/CORE/HDD/src/wlan_hdd_cfg80211.c
+++ b/CORE/HDD/src/wlan_hdd_cfg80211.c
@@ -668,7 +668,7 @@
 #endif
 #ifdef FEATURE_WLAN_SCAN_PNO
     wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
-    wiphy->max_sched_scan_ssids = MAX_SCAN_SSID;
+    wiphy->max_sched_scan_ssids = SIR_PNO_MAX_SUPP_NETWORKS;
     wiphy->max_match_sets       = SIR_PNO_MAX_SUPP_NETWORKS;
 #endif/*FEATURE_WLAN_SCAN_PNO*/