qcacld-3.0: Rename pHddCtx in wlan_hdd_ipa.[ch]

The Linux Coding Style frowns upon mixed-case names and so-called
Hungarian notation, so rename pHddCtx to align with the Coding Style.

Change-Id: Icc584ab8c6467af7e95631b7898296885b310d65
CRs-Fixed: 2103653
diff --git a/core/hdd/inc/wlan_hdd_ipa.h b/core/hdd/inc/wlan_hdd_ipa.h
index 29a2e37..8e43dd5 100644
--- a/core/hdd/inc/wlan_hdd_ipa.h
+++ b/core/hdd/inc/wlan_hdd_ipa.h
@@ -102,8 +102,8 @@
 				      uint8_t reset_stats);
 void hdd_ipa_uc_set_quota(struct hdd_adapter *adapter, uint8_t set_quota,
 			  uint64_t quota_bytes);
-bool hdd_ipa_is_enabled(struct hdd_context *pHddCtx);
-bool hdd_ipa_uc_is_enabled(struct hdd_context *pHddCtx);
+bool hdd_ipa_is_enabled(struct hdd_context *hdd_ctx);
+bool hdd_ipa_uc_is_enabled(struct hdd_context *hdd_ctx);
 #ifndef QCA_LL_TX_FLOW_CONTROL_V2
 int hdd_ipa_send_mcc_scc_msg(struct hdd_context *hdd_ctx, bool mcc_mode);
 #else
@@ -186,12 +186,12 @@
 {
 }
 
-static inline bool hdd_ipa_is_enabled(struct hdd_context *pHddCtx)
+static inline bool hdd_ipa_is_enabled(struct hdd_context *hdd_ctx)
 {
 	return false;
 }
 
-static inline bool hdd_ipa_uc_is_enabled(struct hdd_context *pHddCtx)
+static inline bool hdd_ipa_uc_is_enabled(struct hdd_context *hdd_ctx)
 {
 	return false;
 }