提交 835680b8 编写于 作者: H Hante Meuleman 提交者: Kalle Valo

brcmfmac: remove unnecessary null pointer check

in the function brcmf_bus_start() in the exception handling a
check is made to dermine whether ifp is null, though this is not
possible. Removing the unnessary check.
Reviewed-by: NArend Van Spriel <arend.vanspriel@broadcom.com>
Reviewed-by: NFranky Lin <franky.lin@broadcom.com>
Reviewed-by: NPieter-Paul Giesberts <pieter-paul.giesberts@broadcom.com>
Signed-off-by: NHante Meuleman <hante.meuleman@broadcom.com>
Signed-off-by: NArend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
上级 8fa5fdec
...@@ -1048,8 +1048,7 @@ int brcmf_bus_start(struct device *dev) ...@@ -1048,8 +1048,7 @@ int brcmf_bus_start(struct device *dev)
brcmf_fws_del_interface(ifp); brcmf_fws_del_interface(ifp);
brcmf_fws_deinit(drvr); brcmf_fws_deinit(drvr);
} }
if (ifp) brcmf_net_detach(ifp->ndev, false);
brcmf_net_detach(ifp->ndev, false);
if (p2p_ifp) if (p2p_ifp)
brcmf_net_detach(p2p_ifp->ndev, false); brcmf_net_detach(p2p_ifp->ndev, false);
drvr->iflist[0] = NULL; drvr->iflist[0] = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册