diff options
author | Ben Greear <greearb@candelatech.com> | 2012-03-16 00:22:05 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-09 22:05:57 +0200 |
commit | d17087e78d3961bd42f99cc3cf8cbf2d7d8ef55e (patch) | |
tree | 1f4b1cd96354b9ec58a3a403d5d1cff004b0c863 /net/mac80211/driver-ops.h | |
parent | ath9k_hw: Update rx gain initval to improve rx sensitivity (diff) | |
download | linux-d17087e78d3961bd42f99cc3cf8cbf2d7d8ef55e.tar.xz linux-d17087e78d3961bd42f99cc3cf8cbf2d7d8ef55e.zip |
mac80211: Add iface name when calling WARN-ON.
This lets the user know which interface has failed
the check_sdata_in_driver check.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r-- | net/mac80211/driver-ops.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index af4691fed645..e8dbda1b5b8a 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h @@ -7,7 +7,9 @@ static inline void check_sdata_in_driver(struct ieee80211_sub_if_data *sdata) { - WARN_ON(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER)); + WARN(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER), + "%s: Failed check-sdata-in-driver check, flags: 0x%x\n", + sdata->dev->name, sdata->flags); } static inline struct ieee80211_sub_if_data * |