Lines Matching refs:fmt
84 #define tuner_printk(kernlvl, i2cprops, fmt, arg...) do { \ argument
85 printk(kernlvl "%s %d-%04x: " fmt, i2cprops.name, \
94 #define __tuner_warn(i2cprops, fmt, arg...) do { \ argument
95 tuner_printk(KERN_WARNING, i2cprops, fmt, ##arg); \
98 #define __tuner_info(i2cprops, fmt, arg...) do { \ argument
99 tuner_printk(KERN_INFO, i2cprops, fmt, ##arg); \
102 #define __tuner_err(i2cprops, fmt, arg...) do { \ argument
103 tuner_printk(KERN_ERR, i2cprops, fmt, ##arg); \
106 #define __tuner_dbg(i2cprops, fmt, arg...) do { \ argument
108 tuner_printk(KERN_DEBUG, i2cprops, fmt, ##arg); \
111 #define tuner_warn(fmt, arg...) __tuner_warn(priv->i2c_props, fmt, ##arg) argument
112 #define tuner_info(fmt, arg...) __tuner_info(priv->i2c_props, fmt, ##arg) argument
113 #define tuner_err(fmt, arg...) __tuner_err(priv->i2c_props, fmt, ##arg) argument
114 #define tuner_dbg(fmt, arg...) __tuner_dbg(priv->i2c_props, fmt, ##arg) argument