iwinfo: add "hwmodes_text" to the info output

This is a preformatted string like "ac/ax/b/g/n" for presentation.

Signed-off-by: Andre Heider <a.heider@gmail.com>
This commit is contained in:
Andre Heider 2022-11-23 11:32:26 +01:00 committed by Jo-Philipp Wich
parent b3f530bc6b
commit 7de4820c87

View file

@ -258,10 +258,14 @@ rpc_iwinfo_call_hwmodes(const char *name)
static void rpc_iwinfo_call_hw_ht_mode(int hwmodelist)
{
char text[32];
const char *hwmode_str;
const char *htmode_str;
int htmode;
if (iwinfo_format_hwmodes(hwmodelist, text, sizeof(text)) > 0)
blobmsg_add_string(&buf, "hwmodes_text", text);
if (hwmodelist == IWINFO_80211_AD)
{
blobmsg_add_string(&buf, "hwmode", "ad");