diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2019-03-12 10:51:40 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2019-04-08 13:31:24 +0200 |
commit | a58d7525b8014115d57fd30186a84f6d30783f2c (patch) | |
tree | 205f3d83fc5e648ccd5733cb2806093d900e542f /include | |
parent | 5b989c18dab2e82bac8a5564a174794bf84b20e6 (diff) | |
download | linux-a58d7525b8014115d57fd30186a84f6d30783f2c.tar.bz2 |
cfg80211: add ratelimited variants of err and warn
wiphy_{err,warn}_ratelimited will be used by rt2x00
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/cfg80211.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index bb307a11ee63..13bfeb712d36 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -7183,6 +7183,11 @@ void cfg80211_pmsr_complete(struct wireless_dev *wdev, #define wiphy_info(wiphy, format, args...) \ dev_info(&(wiphy)->dev, format, ##args) +#define wiphy_err_ratelimited(wiphy, format, args...) \ + dev_err_ratelimited(&(wiphy)->dev, format, ##args) +#define wiphy_warn_ratelimited(wiphy, format, args...) \ + dev_warn_ratelimited(&(wiphy)->dev, format, ##args) + #define wiphy_debug(wiphy, format, args...) \ wiphy_printk(KERN_DEBUG, wiphy, format, ##args) |