diff options
| author | Tobin C. Harding <[email protected]> | 2017-03-13 17:38:21 +1100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-03-14 06:20:06 +0800 |
| commit | 1b45ba65091483cbdfae57b2afc256936e3a3d96 (patch) | |
| tree | 290dfeca8f9fba3d3c9b6e02a0ace52a35cd4822 | |
| parent | 6e37c7154a91bde5ca8b7f9bf2bec93518f74553 (diff) | |
staging: ks7010: reduce length of comment string
Comment string is unnecessarily verbose. Checkpatch emits WARNING:
line over 80 characters.
Reduce comment string without loss of meaning.
Signed-off-by: Tobin C. Harding <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/ks7010/ks_hostif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010/ks_hostif.c index f262e399318f..a93b104a5116 100644 --- a/drivers/staging/ks7010/ks_hostif.c +++ b/drivers/staging/ks7010/ks_hostif.c @@ -368,7 +368,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv, mic_failure->failure = 2; mic_failure->counter = (uint16_t)((now - mic_failure->last_failure_time) / HZ); - if (!mic_failure->counter) /* mic_failure counter value range 1-60 */ + if (!mic_failure->counter) /* range 1-60 */ mic_failure->counter = 1; } priv->wpa.mic_failure.last_failure_time = now; |