libiwinfo: remove unused struct
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 7 Sep 2011 04:19:49 +0000 (04:19 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 7 Sep 2011 04:19:49 +0000 (04:19 +0000)
contrib/package/iwinfo/src/iwinfo_nl80211.c
contrib/package/iwinfo/src/iwinfo_nl80211.h

index abaeb51..dba6707 100644 (file)
@@ -1046,7 +1046,7 @@ int nl80211_get_encryption(const char *ifname, char *buf)
 
 static int nl80211_get_assoclist_cb(struct nl_msg *msg, void *arg)
 {
-       struct nl80211_arraybuf *arr = arg;
+       struct nl80211_array_buf *arr = arg;
        struct iwinfo_assoclist_entry *e = arr->buf;
        struct nlattr **attr = nl80211_parse(msg);
        struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
@@ -1092,7 +1092,7 @@ int nl80211_get_assoclist(const char *ifname, char *buf, int *len)
        int i, noise = 0;
        struct dirent *de;
        struct nl80211_msg_conveyor *req;
-       struct nl80211_arraybuf arr = { .buf = buf, .count = 0 };
+       struct nl80211_array_buf arr = { .buf = buf, .count = 0 };
        struct iwinfo_assoclist_entry *e;
 
        if ((d = opendir("/sys/class/net")) != NULL)
@@ -1434,7 +1434,7 @@ static int nl80211_get_freqlist_cb(struct nl_msg *msg, void *arg)
 {
        int bands_remain, freqs_remain;
 
-       struct nl80211_arraybuf *arr = arg;
+       struct nl80211_array_buf *arr = arg;
        struct iwinfo_freqlist_entry *e = arr->buf;
 
        struct nlattr **attr = nl80211_parse(msg);
@@ -1486,7 +1486,7 @@ static int nl80211_get_freqlist_cb(struct nl_msg *msg, void *arg)
 int nl80211_get_freqlist(const char *ifname, char *buf, int *len)
 {
        struct nl80211_msg_conveyor *req;
-       struct nl80211_arraybuf arr = { .buf = buf, .count = 0 };
+       struct nl80211_array_buf arr = { .buf = buf, .count = 0 };
 
        req = nl80211_msg(ifname, NL80211_CMD_GET_WIPHY, 0);
        if (req)
index edad085..1fb5cf5 100644 (file)
@@ -52,13 +52,7 @@ struct nl80211_rssi_rate {
        int8_t  rssi;
 };
 
-struct nl80211_assoc_count {
-       struct iwinfo_assoclist_entry *entry;
-       int noise;
-       int count;
-};
-
-struct nl80211_arraybuf {
+struct nl80211_array_buf {
        void *buf;
        int count;
 };