staging: brcm80211: flatten wlc_phy_shared_detach()
wlc_phy_shared_detach() is an unnecessary level of indirection to just call kfree(), so replace the function with kfree(). Signed-off-by: Henry Ptasinski <henryp@broadcom.com> Reviewed-by: Roland Vossen <rvossen@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
aa51bffb63
commit
202a208bd2
@ -982,7 +982,7 @@ int brcms_b_detach(struct brcms_c_info *wlc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Free shared phy state */
|
/* Free shared phy state */
|
||||||
wlc_phy_shared_detach(wlc_hw->phy_sh);
|
kfree(wlc_hw->phy_sh);
|
||||||
|
|
||||||
wlc_phy_shim_detach(wlc_hw->physhim);
|
wlc_phy_shim_detach(wlc_hw->physhim);
|
||||||
|
|
||||||
|
@ -506,13 +506,6 @@ shared_phy_t *wlc_phy_shared_attach(shared_phy_params_t *shp)
|
|||||||
return sh;
|
return sh;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wlc_phy_shared_detach(shared_phy_t *phy_sh)
|
|
||||||
{
|
|
||||||
if (phy_sh) {
|
|
||||||
kfree(phy_sh);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
|
wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
|
||||||
char *vars, struct wiphy *wiphy)
|
char *vars, struct wiphy *wiphy)
|
||||||
{
|
{
|
||||||
|
@ -177,7 +177,6 @@ struct shared_phy_params {
|
|||||||
|
|
||||||
|
|
||||||
extern shared_phy_t *wlc_phy_shared_attach(shared_phy_params_t *shp);
|
extern shared_phy_t *wlc_phy_shared_attach(shared_phy_params_t *shp);
|
||||||
extern void wlc_phy_shared_detach(shared_phy_t *phy_sh);
|
|
||||||
extern wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
|
extern wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
|
||||||
char *vars, struct wiphy *wiphy);
|
char *vars, struct wiphy *wiphy);
|
||||||
extern void wlc_phy_detach(wlc_phy_t *ppi);
|
extern void wlc_phy_detach(wlc_phy_t *ppi);
|
||||||
|
Loading…
Reference in New Issue
Block a user