prima: Increase driver wait time for platform driver to come up

Presently wlan driver is waiting for 5sec to platform driver to
come up and to download NV data. But in some cases its observed that
platform driver is taking more than 5sec to download NV data, leading
wlan driver load failure.

Increase driver wait time for platform driver to download NV data from
5sec to 10sec.

Change-Id: I0236b3e3070bd670cac94d5c82d0571b88ae22d5
CRs-Fixed: 1091409
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index c8fe451..f27e2f6 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -12494,11 +12494,11 @@
 
 #ifdef HAVE_WCNSS_CAL_DOWNLOAD
    /* wait until WCNSS driver downloads NV */
-   while (!wcnss_device_ready() && 5 >= ++max_retries) {
+   while (!wcnss_device_ready() && 10 >= ++max_retries) {
        msleep(1000);
    }
 
-   if (max_retries >= 5) {
+   if (max_retries >= 10) {
       hddLog(VOS_TRACE_LEVEL_FATAL,"%s: WCNSS driver not ready", __func__);
       vos_wake_lock_destroy(&wlan_wake_lock);
 #ifdef WLAN_LOGGING_SOCK_SVC_ENABLE