Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5951a5c1 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: Remove unused dump_wpsie23a()

parent 7e075832
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
@@ -930,30 +930,6 @@ void rtw_macaddr_cfg23a(u8 *mac_addr)
		  MAC_ARG(mac_addr));
}

void dump_wps_ie23a(u8 *ie, u32 ie_len) {
	u8* pos = (u8*)ie;
	u16 id;
	u16 len;

	u8 *wps_ie;
	uint wps_ielen;

	wps_ie = rtw_get_wps_ie23a(ie, ie_len, NULL, &wps_ielen);
	if (wps_ie != ie || wps_ielen == 0)
		return;

	pos+= 6;
	while (pos-ie < ie_len) {
		id = get_unaligned_be16(pos);
		len = get_unaligned_be16(pos + 2);

		DBG_8723A("%s ID:0x%04x, LEN:%u\n", __func__, id, len);

		pos += (4 + len);
	}
}


/* Baron adds to avoid FreeBSD warning */
int ieee80211_is_empty_essid23a(const char *essid, int essid_len)
{
+0 −2
Original line number Diff line number Diff line
@@ -489,8 +489,6 @@ u8 *rtw_get_wps_ie23a(u8 *in_ie, uint in_len, u8 *wps_ie, uint *wps_ielen);
u8 *rtw_get_wps_attr23a(u8 *wps_ie, uint wps_ielen, u16 target_attr_id ,u8 *buf_attr, u32 *len_attr);
u8 *rtw_get_wps_attr_content23a(u8 *wps_ie, uint wps_ielen, u16 target_attr_id ,u8 *buf_content, uint *len_content);

void dump_wps_ie23a(u8 *ie, u32 ie_len);

uint	rtw_get_rateset_len23a(u8	*rateset);

struct registry_priv;