Split long comment lines in QCA vendor related definitions
Fix one of the style problems in qca-vendor.h. Signed-off-by: Yu Wang <quic_yyuwang@quicinc.com>
This commit is contained in:
parent
4c9af238c1
commit
e5ccbfc69e
1 changed files with 4 additions and 2 deletions
|
@ -2454,9 +2454,11 @@ enum qca_wlan_vendor_attr_config {
|
|||
* used to calculate statistics like average the TSF offset or average
|
||||
* number of frame leaked.
|
||||
* For instance, upon Beacon frame reception:
|
||||
* current_avg = ((beacon_TSF - TBTT) * factor + previous_avg * (0x10000 - factor) ) / 0x10000
|
||||
* current_avg = ((beacon_TSF - TBTT) * factor +
|
||||
* previous_avg * (0x10000 - factor)) / 0x10000
|
||||
* For instance, when evaluating leaky APs:
|
||||
* current_avg = ((num frame received within guard time) * factor + previous_avg * (0x10000 - factor)) / 0x10000
|
||||
* current_avg = ((num frame received within guard time) * factor +
|
||||
* previous_avg * (0x10000 - factor)) / 0x10000
|
||||
*/
|
||||
QCA_WLAN_VENDOR_ATTR_CONFIG_STATS_AVG_FACTOR = 2,
|
||||
/* Unsigned 32-bit value to configure guard time, i.e., when
|
||||
|
|
Loading…
Reference in a new issue