staging: rtl8723au: Remove unused dump_wpsie23a()
authorJes Sorensen <Jes.Sorensen@redhat.com>
Tue, 15 Apr 2014 17:44:17 +0000 (19:44 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Apr 2014 18:04:04 +0000 (11:04 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_ieee80211.c
drivers/staging/rtl8723au/include/ieee80211.h

index b430e10214f35e83af194bdc954e4b7f79a9c914..e3fdbeba24fa7ee63f3e8746f35a228dd327607d 100644 (file)
@@ -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)
 {
index fcbe6ba59c27f6d33e735ead6475169436226fa8..de7c1a7f6b0a3147b86e881ddc6dc65c3a222426 100644 (file)
@@ -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;
This page took 0.026619 seconds and 5 git commands to generate.