aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2012-03-15 19:22:05 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-04-09 16:05:57 -0400
commitd17087e78d3961bd42f99cc3cf8cbf2d7d8ef55e (patch)
tree1f4b1cd96354b9ec58a3a403d5d1cff004b0c863 /net
parent68d9e1fa24d9c7c2e527f49df8d18fb8cf0ec943 (diff)
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')
-rw-r--r--net/mac80211/driver-ops.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h
index af4691fed64..e8dbda1b5b8 100644
--- a/net/mac80211/driver-ops.h
+++ b/net/mac80211/driver-ops.h
@@ -7,7 +7,9 @@
7 7
8static inline void check_sdata_in_driver(struct ieee80211_sub_if_data *sdata) 8static inline void check_sdata_in_driver(struct ieee80211_sub_if_data *sdata)
9{ 9{
10 WARN_ON(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER)); 10 WARN(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER),
11 "%s: Failed check-sdata-in-driver check, flags: 0x%x\n",
12 sdata->dev->name, sdata->flags);
11} 13}
12 14
13static inline struct ieee80211_sub_if_data * 15static inline struct ieee80211_sub_if_data *