From 40f5a41eaedcacd4435e3bd7b7f2e9b9163efe18 Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 17 Jan 2010 03:07:55 +0000 Subject: [PATCH] iw: print the current operating frequency in the phy info git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19179 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/iw/patches/110-freq.patch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 package/iw/patches/110-freq.patch diff --git a/package/iw/patches/110-freq.patch b/package/iw/patches/110-freq.patch new file mode 100644 index 0000000000..9a00a65e3f --- /dev/null +++ b/package/iw/patches/110-freq.patch @@ -0,0 +1,30 @@ +--- 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])); + ++ if (tb_msg[NL80211_ATTR_WIPHY_FREQ]) { ++ const char *mode; ++ ++ if (tb_msg[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) ++ switch(nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_CHANNEL_TYPE])) { ++ case NL80211_CHAN_HT20: ++ mode = "HT20"; ++ break; ++ case NL80211_CHAN_HT40PLUS: ++ mode = "HT40+"; ++ break; ++ case NL80211_CHAN_HT40MINUS: ++ mode = "HT40-"; ++ break; ++ default: ++ mode = ""; ++ } ++ ++ printf("\tCurrent frequency: %d MHz %s\n", 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++; -- 2.11.0