Lines Matching refs:arg
87 #define tuner_printk(kernlvl, i2cprops, fmt, arg...) do { \ argument
91 i2cprops.addr, ##arg); \
97 #define __tuner_warn(i2cprops, fmt, arg...) do { \ argument
98 tuner_printk(KERN_WARNING, i2cprops, fmt, ##arg); \
101 #define __tuner_info(i2cprops, fmt, arg...) do { \ argument
102 tuner_printk(KERN_INFO, i2cprops, fmt, ##arg); \
105 #define __tuner_err(i2cprops, fmt, arg...) do { \ argument
106 tuner_printk(KERN_ERR, i2cprops, fmt, ##arg); \
109 #define __tuner_dbg(i2cprops, fmt, arg...) do { \ argument
111 tuner_printk(KERN_DEBUG, i2cprops, fmt, ##arg); \
114 #define tuner_warn(fmt, arg...) __tuner_warn(priv->i2c_props, fmt, ##arg) argument
115 #define tuner_info(fmt, arg...) __tuner_info(priv->i2c_props, fmt, ##arg) argument
116 #define tuner_err(fmt, arg...) __tuner_err(priv->i2c_props, fmt, ##arg) argument
117 #define tuner_dbg(fmt, arg...) __tuner_dbg(priv->i2c_props, fmt, ##arg) argument