Ver código fonte

qcacld-3.0: Fix spurious space in CFG_MAX_AMSDU_NUM_NAME usage

Checkpatch is flagging the following issue:
ERROR:SPACING: space prohibited before that ',' (ctx:WxW)
+	REG_VARIABLE(CFG_MAX_AMSDU_NUM_NAME , WLAN_PARAM_Integer,
 	                                    ^

Remove the spurious space.

Change-Id: I60d78072cbaa6b24df14c623af35b99ef81606d5
CRs-Fixed: 2119500
Jeff Johnson 7 anos atrás
pai
commit
82cc76fb35
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      core/hdd/src/wlan_hdd_cfg.c

+ 1 - 1
core/hdd/src/wlan_hdd_cfg.c

@@ -2687,7 +2687,7 @@ struct reg_table_entry g_registry_table[] = {
 		     CFG_PNO_SLOW_SCAN_MULTIPLIER_MIN,
 		     CFG_PNO_SLOW_SCAN_MULTIPLIER_MAX),
 #endif
-	REG_VARIABLE(CFG_MAX_AMSDU_NUM_NAME , WLAN_PARAM_Integer,
+	REG_VARIABLE(CFG_MAX_AMSDU_NUM_NAME, WLAN_PARAM_Integer,
 		     struct hdd_config, max_amsdu_num,
 		     VAR_FLAGS_OPTIONAL | VAR_FLAGS_RANGE_CHECK_ASSUME_DEFAULT,
 		     CFG_MAX_AMSDU_NUM_DEFAULT,