Lines Matching refs:format

743  * @supported_rates: supported rates in IEEE 802.11 format
756 * @uapsd_queues: bitmap of queues configured for uapsd. same format
758 * @max_sp: max Service Period. same format as the MAX_SP in the
768 * @supported_channels: supported channels in IEEE 802.11 format
770 * @supported_oper_classes: supported oper classes in IEEE 802.11 format
1181 * @basic_rates: basic rates in IEEE 802.11 format
1849 * one bit per byte, in same format as nl80211
2952 * and are in the same format as in the information element. See
3525 * @fc: frame control field in little-endian format
4879 #define wiphy_printk(level, wiphy, format, args...) \
4880 dev_printk(level, &(wiphy)->dev, format, ##args)
4881 #define wiphy_emerg(wiphy, format, args...) \
4882 dev_emerg(&(wiphy)->dev, format, ##args)
4883 #define wiphy_alert(wiphy, format, args...) \
4884 dev_alert(&(wiphy)->dev, format, ##args)
4885 #define wiphy_crit(wiphy, format, args...) \
4886 dev_crit(&(wiphy)->dev, format, ##args)
4887 #define wiphy_err(wiphy, format, args...) \
4888 dev_err(&(wiphy)->dev, format, ##args)
4889 #define wiphy_warn(wiphy, format, args...) \
4890 dev_warn(&(wiphy)->dev, format, ##args)
4891 #define wiphy_notice(wiphy, format, args...) \
4892 dev_notice(&(wiphy)->dev, format, ##args)
4893 #define wiphy_info(wiphy, format, args...) \
4894 dev_info(&(wiphy)->dev, format, ##args)
4896 #define wiphy_debug(wiphy, format, args...) \
4897 wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
4899 #define wiphy_dbg(wiphy, format, args...) \
4900 dev_dbg(&(wiphy)->dev, format, ##args)
4905 #define wiphy_vdbg(wiphy, format, args...) \
4908 wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
4918 #define wiphy_WARN(wiphy, format, args...) \
4919 WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);