diff options
| author | Malcolm Priestley <tvboxspy@gmail.com> | 2020-04-14 11:39:23 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-05-02 17:20:50 +0200 |
| commit | bff57f35067ceefcb30424106301bffc9b5d67e9 (patch) | |
| tree | 1343138c43b6b50bc90293978bfb5f250a155804 | |
| parent | 9e130657b892b3d8c9f297772a553d9a2c94c1a2 (diff) | |
| download | linux-bff57f35067ceefcb30424106301bffc9b5d67e9.tar.gz linux-bff57f35067ceefcb30424106301bffc9b5d67e9.tar.bz2 linux-bff57f35067ceefcb30424106301bffc9b5d67e9.zip | |
staging: vt6656: Power save stop wake_up_count wrap around.
commit ea81c3486442f4643fc9825a2bb1b430b829bccd upstream.
conf.listen_interval can sometimes be zero causing wake_up_count
to wrap around up to many beacons too late causing
CTRL-EVENT-BEACON-LOSS as in.
wpa_supplicant[795]: message repeated 45 times: [..CTRL-EVENT-BEACON-LOSS ]
Fixes: 43c93d9bf5e2 ("staging: vt6656: implement power saving code.")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Link: https://lore.kernel.org/r/fce47bb5-7ca6-7671-5094-5c6107302f2b@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/vt6656/int.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/int.c b/drivers/staging/vt6656/int.c index cb22b5efe2be..e0a19a1105bc 100644 --- a/drivers/staging/vt6656/int.c +++ b/drivers/staging/vt6656/int.c @@ -157,7 +157,8 @@ void vnt_int_process_data(struct vnt_private *priv) priv->wake_up_count = priv->hw->conf.listen_interval; - --priv->wake_up_count; + if (priv->wake_up_count) + --priv->wake_up_count; /* Turn on wake up to listen next beacon */ if (priv->wake_up_count == 1) |
