1
0
Fork 0

staging: rtl8723au: update_bcn_vendor_spec_ie(): Go easy on those brackets

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Jes Sorensen 2014-04-15 19:44:12 +02:00 committed by Greg Kroah-Hartman
parent 7964eba0d8
commit ab6fb7a503
1 changed files with 0 additions and 10 deletions

View File

@ -1303,25 +1303,15 @@ static void update_bcn_vendor_spec_ie(struct rtw_adapter *padapter, u8*oui)
DBG_8723A("%s\n", __func__);
if (!memcmp(RTW_WPA_OUI23A_TYPE, oui, 4))
{
update_bcn_wpa_ie(padapter);
}
else if (!memcmp(WMM_OUI23A, oui, 4))
{
update_bcn_wmm_ie(padapter);
}
else if (!memcmp(WPS_OUI23A, oui, 4))
{
update_bcn_wps_ie(padapter);
}
else if (!memcmp(P2P_OUI23A, oui, 4))
{
update_bcn_p2p_ie(padapter);
}
else
{
DBG_8723A("unknown OUI type!\n");
}
}
void update_beacon23a(struct rtw_adapter *padapter, u8 ie_id, u8 *oui, u8 tx)