Skip to content

Commit

Permalink
mwifiex: add wowlan info messages
Browse files Browse the repository at this point in the history
This patch adds informative messages in wake up on
magic packet, disconnect, pattern configuration paths.

Signed-off-by: chunfan chen <jeffc@marvell.com>
Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
  • Loading branch information
chunfan chen authored and Kalle Valo committed Jan 29, 2016
1 parent 0c9b7f2 commit 5323b53
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/net/wireless/marvell/mwifiex/cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -3171,10 +3171,12 @@ static int mwifiex_set_wowlan_mef_entry(struct mwifiex_private *priv,
sizeof(byte_seq));
mef_entry->filter[filt_num].filt_type = TYPE_EQ;

if (first_pat)
if (first_pat) {
first_pat = false;
else
mwifiex_dbg(priv->adapter, INFO, "Wake on patterns\n");
} else {
mef_entry->filter[filt_num].filt_action = TYPE_AND;
}

filt_num++;
}
Expand All @@ -3200,6 +3202,7 @@ static int mwifiex_set_wowlan_mef_entry(struct mwifiex_private *priv,
mef_entry->filter[filt_num].offset = 56;
mef_entry->filter[filt_num].filt_type = TYPE_EQ;
mef_entry->filter[filt_num].filt_action = TYPE_OR;
mwifiex_dbg(priv->adapter, INFO, "Wake on magic packet\n");
}
return ret;
}
Expand Down Expand Up @@ -3295,6 +3298,7 @@ static int mwifiex_cfg80211_suspend(struct wiphy *wiphy,
"Failed to set HS params\n");
return ret;
}
mwifiex_dbg(priv->adapter, INFO, "Wake on device disconnect\n");
}

return ret;
Expand Down

0 comments on commit 5323b53

Please sign in to comment.