Lines Matching refs:args
4217 * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
5111 * @storage points to cb->args[5], ie. is preserved over the multiple
6313 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
9096 #define wiphy_printk(level, wiphy, format, args...) \
9097 dev_printk(level, &(wiphy)->dev, format, ##args)
9098 #define wiphy_emerg(wiphy, format, args...) \
9099 dev_emerg(&(wiphy)->dev, format, ##args)
9100 #define wiphy_alert(wiphy, format, args...) \
9101 dev_alert(&(wiphy)->dev, format, ##args)
9102 #define wiphy_crit(wiphy, format, args...) \
9103 dev_crit(&(wiphy)->dev, format, ##args)
9104 #define wiphy_err(wiphy, format, args...) \
9105 dev_err(&(wiphy)->dev, format, ##args)
9106 #define wiphy_warn(wiphy, format, args...) \
9107 dev_warn(&(wiphy)->dev, format, ##args)
9108 #define wiphy_notice(wiphy, format, args...) \
9109 dev_notice(&(wiphy)->dev, format, ##args)
9110 #define wiphy_info(wiphy, format, args...) \
9111 dev_info(&(wiphy)->dev, format, ##args)
9112 #define wiphy_info_once(wiphy, format, args...) \
9113 dev_info_once(&(wiphy)->dev, format, ##args)
9115 #define wiphy_err_ratelimited(wiphy, format, args...) \
9116 dev_err_ratelimited(&(wiphy)->dev, format, ##args)
9117 #define wiphy_warn_ratelimited(wiphy, format, args...) \
9118 dev_warn_ratelimited(&(wiphy)->dev, format, ##args)
9120 #define wiphy_debug(wiphy, format, args...) \
9121 wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
9123 #define wiphy_dbg(wiphy, format, args...) \
9124 dev_dbg(&(wiphy)->dev, format, ##args)
9129 #define wiphy_vdbg(wiphy, format, args...) \
9132 wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
9142 #define wiphy_WARN(wiphy, format, args...) \
9143 WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);