qcacld-3.0: Rename hdd_context enableSapSuspend field

Per the Linux coding style "mixed-case names are frowned upon" so
rename field enableSapSuspend in struct hdd_context.

Change-Id: I8f5321fa57c01a36df72dec17499969d0848e3dd
CRs-Fixed: 2140344
diff --git a/core/hdd/src/wlan_hdd_power.c b/core/hdd/src/wlan_hdd_power.c
index 73ab9d3..b0bfc50 100644
--- a/core/hdd/src/wlan_hdd_power.c
+++ b/core/hdd/src/wlan_hdd_power.c
@@ -1763,7 +1763,7 @@
 				wlan_hdd_inc_suspend_stats(hdd_ctx,
 							   SUSPEND_FAIL_RADAR);
 				return -EAGAIN;
-			} else if (!hdd_ctx->config->enableSapSuspend) {
+			} else if (!hdd_ctx->config->enable_sap_suspend) {
 				/* return -EOPNOTSUPP if SAP does not support
 				 * suspend
 				 */
@@ -1771,7 +1771,7 @@
 				return -EOPNOTSUPP;
 			}
 		} else if (QDF_P2P_GO_MODE == adapter->device_mode) {
-			if (!hdd_ctx->config->enableSapSuspend) {
+			if (!hdd_ctx->config->enable_sap_suspend) {
 				/* return -EOPNOTSUPP if GO does not support
 				 * suspend
 				 */