mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 04:09:18 -04:00
staging: wilc1000: remove goto label '_done_' in handle_listen_state_expired()
Remove the use of goto label '_done_' in handle_listen_state_expired(). Changes are done to avoid the use of '_' in label name. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b417dcd75f
commit
b2d26c8ccc
@@ -2332,7 +2332,7 @@ static u32 handle_listen_state_expired(struct wilc_vif *vif,
|
||||
kfree(wid.val);
|
||||
if (result != 0) {
|
||||
netdev_err(vif->ndev, "Failed to set remain channel\n");
|
||||
goto _done_;
|
||||
return result;
|
||||
}
|
||||
|
||||
if (hif_drv->remain_on_ch.expired) {
|
||||
@@ -2345,7 +2345,6 @@ static u32 handle_listen_state_expired(struct wilc_vif *vif,
|
||||
result = -EFAULT;
|
||||
}
|
||||
|
||||
_done_:
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user