|
@@ -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;
|
|
|
}
|