wireless/bcm43xxx: discard auth event if netdev down
Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
parent
d861c7bfd9
commit
d27129bc35
|
@ -622,6 +622,11 @@ void bcmf_wl_auth_event_handler(FAR struct bcmf_dev_s *priv,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!priv->bc_bifup)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
bcmf_hexdump((uint8_t *)event, len, (unsigned long)event);
|
bcmf_hexdump((uint8_t *)event, len, (unsigned long)event);
|
||||||
|
|
||||||
if (type == WLC_E_PSK_SUP)
|
if (type == WLC_E_PSK_SUP)
|
||||||
|
|
Loading…
Reference in New Issue