Kaynağa Gözat

qcacld-3.0: Fix long lines in wlan_hdd_wowl.h

Checkpatch has detected multiple instances of "line over 80
characters" so fix them.

Change-Id: Ie9b3a517b97c0f70f43e7991c0576eaf1e05ec38
CRs-Fixed: 2120622
Jeff Johnson 7 yıl önce
ebeveyn
işleme
18ef284298
2 değiştirilmiş dosya ile 8 ekleme ve 4 silme
  1. 4 2
      core/hdd/inc/wlan_hdd_wowl.h
  2. 4 2
      core/hdd/src/wlan_hdd_wowl.c

+ 4 - 2
core/hdd/inc/wlan_hdd_wowl.h

@@ -150,7 +150,8 @@ bool hdd_add_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx,
  *
  * Return: false if any errors encountered, true otherwise
  */
-bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx);
+bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter,
+			       uint8_t pattern_idx);
 
 /**
  * hdd_enter_wowl() - Function which will enable WoWL. At least one
@@ -161,7 +162,8 @@ bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx)
  *
  * Return: false if any errors encountered, true otherwise
  */
-bool hdd_enter_wowl(struct hdd_adapter *adapter, bool enable_mp, bool enable_pbm);
+bool hdd_enter_wowl(struct hdd_adapter *adapter,
+		    bool enable_mp, bool enable_pbm);
 
 /**
  * hdd_exit_wowl() - Function which will disable WoWL

+ 4 - 2
core/hdd/src/wlan_hdd_wowl.c

@@ -425,7 +425,8 @@ bool hdd_add_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx,
  *
  * Return: false if any errors encountered, true otherwise
  */
-bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx)
+bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter,
+			       uint8_t pattern_idx)
 {
 	struct wow_delete_pattern delPattern;
 	tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(adapter);
@@ -473,7 +474,8 @@ bool hdd_del_wowl_ptrn_debugfs(struct hdd_adapter *adapter, uint8_t pattern_idx)
  *
  * Return: false if any errors encountered, true otherwise
  */
-bool hdd_enter_wowl(struct hdd_adapter *adapter, bool enable_mp, bool enable_pbm)
+bool hdd_enter_wowl(struct hdd_adapter *adapter,
+		    bool enable_mp, bool enable_pbm)
 {
 	tSirSmeWowlEnterParams wowParams;
 	QDF_STATUS qdf_ret_status;