diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-17 20:49:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-17 20:49:28 +0000 |
commit | b97cfa4bf5267917339a323505dfd104f8ceba46 (patch) | |
tree | 31713fca2ba2c86dacf603c7e6749c17406a6902 /package/iw | |
parent | 001ebd8d90028c583b1e3b2ef40e3a168c6e7b6a (diff) | |
download | upstream-b97cfa4bf5267917339a323505dfd104f8ceba46.tar.gz upstream-b97cfa4bf5267917339a323505dfd104f8ceba46.tar.bz2 upstream-b97cfa4bf5267917339a323505dfd104f8ceba46.zip |
iw, mac80211: get the frequency info per-netdev instead of per-phy
SVN-Revision: 19194
Diffstat (limited to 'package/iw')
-rw-r--r-- | package/iw/patches/110-freq.patch | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package/iw/patches/110-freq.patch b/package/iw/patches/110-freq.patch index 9a00a65e3f..f73d303bb6 100644 --- a/package/iw/patches/110-freq.patch +++ b/package/iw/patches/110-freq.patch @@ -1,9 +1,9 @@ ---- a/info.c -+++ b/info.c -@@ -62,6 +62,27 @@ static int print_phy_handler(struct nl_m - if (tb_msg[NL80211_ATTR_WIPHY_NAME]) - printf("Wiphy %s\n", nla_get_string(tb_msg[NL80211_ATTR_WIPHY_NAME])); - +--- a/interface.c ++++ b/interface.c +@@ -260,6 +260,27 @@ static int print_iface_handler(struct nl + printf("%s\tifindex %d\n", indent, nla_get_u32(tb_msg[NL80211_ATTR_IFINDEX])); + if (tb_msg[NL80211_ATTR_IFTYPE]) + printf("%s\ttype %s\n", indent, iftype_name(nla_get_u32(tb_msg[NL80211_ATTR_IFTYPE]))); + if (tb_msg[NL80211_ATTR_WIPHY_FREQ]) { + const char *mode; + @@ -22,9 +22,9 @@ + mode = ""; + } + -+ printf("\tCurrent frequency: %d MHz %s\n", nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_FREQ]), mode); ++ printf("%s\tfrequency %d MHz %s\n", indent, nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_FREQ]), mode); + } + - nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band) { - printf("\tBand %d:\n", bandidx); - bandidx++; + + return NL_SKIP; + } |