mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
staging: vt6656: correct return of vnt_init_registers.
commit 7de6155c89 upstream.
The driver standard error returns remove bool false conditions.
Cc: stable <stable@vger.kernel.org> # v5.3+
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Link: https://lore.kernel.org/r/072ec0b3-425f-277e-130c-1e3a116c90d6@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
23533ddf9e
commit
42609009ea
@@ -950,7 +950,7 @@ static const struct ieee80211_ops vnt_mac_ops = {
|
||||
|
||||
int vnt_init(struct vnt_private *priv)
|
||||
{
|
||||
if (!(vnt_init_registers(priv)))
|
||||
if (vnt_init_registers(priv))
|
||||
return -EAGAIN;
|
||||
|
||||
SET_IEEE80211_PERM_ADDR(priv->hw, priv->permanent_net_addr);
|
||||
|
||||
Reference in New Issue
Block a user