Browse Source

qcacld-3.0: Do not ignore idle_shutdown in case of driver mode change

Allow idle shutdown in case it is triggered due to driver mode change
even if any of interface is up.

Change-Id: I29db749d40729a7e7633836bd23083f7652ac845
CRs-Fixed: 3106971
Surabhi Vishnoi 3 years ago
parent
commit
5dcd8bdd26
1 changed files with 13 additions and 12 deletions
  1. 13 12
      core/hdd/src/wlan_hdd_main.c

+ 13 - 12
core/hdd/src/wlan_hdd_main.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -12664,20 +12664,21 @@ int hdd_psoc_idle_shutdown(struct device *dev)
 	if (!hdd_ctx)
 		return -EINVAL;
 
-	/*
-	 * This is to handle scenario in which platform driver triggers
-	 * idle_shutdown if Deep Sleep/Hibernate entry notification is
-	 * received from modem subsystem in wearable devices
-	 */
-	if (hdd_is_any_interface_open(hdd_ctx)) {
-		hdd_err_rl("all interfaces are not down, ignore idle shutdown");
-		return -EINVAL;
-	}
-
 	if (is_mode_change_psoc_idle_shutdown)
 		ret = __hdd_mode_change_psoc_idle_shutdown(hdd_ctx);
-	else
+	else {
+		/*
+		 * This is to handle scenario in which platform driver triggers
+		 * idle_shutdown if Deep Sleep/Hibernate entry notification is
+		 * received from modem subsystem in wearable devices
+		 */
+		if (hdd_is_any_interface_open(hdd_ctx)) {
+			hdd_err_rl("all interfaces are not down, ignore idle shutdown");
+			return -EINVAL;
+		}
+
 		ret =  __hdd_psoc_idle_shutdown(hdd_ctx);
+	}
 
 	return ret;
 }