Lines Matching refs:args
3762 * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
4598 * @storage points to cb->args[5], ie. is preserved over the multiple
5517 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
7968 #define wiphy_printk(level, wiphy, format, args...) \
7969 dev_printk(level, &(wiphy)->dev, format, ##args)
7970 #define wiphy_emerg(wiphy, format, args...) \
7971 dev_emerg(&(wiphy)->dev, format, ##args)
7972 #define wiphy_alert(wiphy, format, args...) \
7973 dev_alert(&(wiphy)->dev, format, ##args)
7974 #define wiphy_crit(wiphy, format, args...) \
7975 dev_crit(&(wiphy)->dev, format, ##args)
7976 #define wiphy_err(wiphy, format, args...) \
7977 dev_err(&(wiphy)->dev, format, ##args)
7978 #define wiphy_warn(wiphy, format, args...) \
7979 dev_warn(&(wiphy)->dev, format, ##args)
7980 #define wiphy_notice(wiphy, format, args...) \
7981 dev_notice(&(wiphy)->dev, format, ##args)
7982 #define wiphy_info(wiphy, format, args...) \
7983 dev_info(&(wiphy)->dev, format, ##args)
7985 #define wiphy_err_ratelimited(wiphy, format, args...) \
7986 dev_err_ratelimited(&(wiphy)->dev, format, ##args)
7987 #define wiphy_warn_ratelimited(wiphy, format, args...) \
7988 dev_warn_ratelimited(&(wiphy)->dev, format, ##args)
7990 #define wiphy_debug(wiphy, format, args...) \
7991 wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
7993 #define wiphy_dbg(wiphy, format, args...) \
7994 dev_dbg(&(wiphy)->dev, format, ##args)
7999 #define wiphy_vdbg(wiphy, format, args...) \
8002 wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
8012 #define wiphy_WARN(wiphy, format, args...) \
8013 WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);