mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-17 01:54:01 +08:00
staging: brcm80211: Remove redundant unlikely()
IS_ERR() already implies unlikely(), so it can be omitted here. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1f0613158e
commit
310d605293
@ -3196,7 +3196,7 @@ s32 wl_cfg80211_attach(struct net_device *ndev, void *data)
|
||||
}
|
||||
WL_DBG(("func %p\n", wl_cfg80211_get_sdio_func()));
|
||||
wdev = wl_alloc_wdev(sizeof(struct wl_iface), &wl_cfg80211_get_sdio_func()->dev);
|
||||
if (unlikely(IS_ERR(wdev)))
|
||||
if (IS_ERR(wdev))
|
||||
return -ENOMEM;
|
||||
|
||||
wdev->iftype = wl_mode_to_nl80211_iftype(WL_MODE_BSS);
|
||||
|
Loading…
Reference in New Issue
Block a user