mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
staging: r8188eu: remove unnecessary label
Remove a label on OnAuthClient that just calls return. We can return directly instead of jumping to this label. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Link: https://lore.kernel.org/r/20221024081417.66441-14-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
05aa6bf9c2
commit
2d64ae536e
@@ -823,7 +823,7 @@ static void OnAuthClient(struct adapter *padapter, struct recv_frame *precv_fram
|
||||
}
|
||||
|
||||
set_link_timer(pmlmeext, 1);
|
||||
goto authclnt_fail;
|
||||
return;
|
||||
}
|
||||
|
||||
if (seq == 2) {
|
||||
@@ -833,7 +833,7 @@ static void OnAuthClient(struct adapter *padapter, struct recv_frame *precv_fram
|
||||
pkt_len - WLAN_HDR_A3_LEN - _AUTH_IE_OFFSET_);
|
||||
|
||||
if (!p)
|
||||
goto authclnt_fail;
|
||||
return;
|
||||
|
||||
memcpy((void *)(pmlmeinfo->chg_txt), (void *)(p + 2), len);
|
||||
pmlmeinfo->auth_seq = 3;
|
||||
@@ -849,18 +849,16 @@ static void OnAuthClient(struct adapter *padapter, struct recv_frame *precv_fram
|
||||
if (pmlmeinfo->auth_algo == dot11AuthAlgrthm_Shared)
|
||||
go2asoc = 1;
|
||||
else
|
||||
goto authclnt_fail;
|
||||
return;
|
||||
} else {
|
||||
/* this is also illegal */
|
||||
goto authclnt_fail;
|
||||
return;
|
||||
}
|
||||
|
||||
if (go2asoc) {
|
||||
start_clnt_assoc(padapter);
|
||||
return;
|
||||
}
|
||||
authclnt_fail:
|
||||
return;
|
||||
}
|
||||
|
||||
static void UpdateBrateTbl(u8 *mbrate)
|
||||
|
||||
Reference in New Issue
Block a user