Lines Matching refs:i2cprops
85 #define tuner_printk(kernlvl, i2cprops, fmt, arg...) do { \ argument
86 printk(kernlvl "%s %d-%04x: " fmt, i2cprops.name, \
87 i2cprops.adap ? \
88 i2c_adapter_id(i2cprops.adap) : -1, \
89 i2cprops.addr, ##arg); \
95 #define __tuner_warn(i2cprops, fmt, arg...) do { \ argument
96 tuner_printk(KERN_WARNING, i2cprops, fmt, ##arg); \
99 #define __tuner_info(i2cprops, fmt, arg...) do { \ argument
100 tuner_printk(KERN_INFO, i2cprops, fmt, ##arg); \
103 #define __tuner_err(i2cprops, fmt, arg...) do { \ argument
104 tuner_printk(KERN_ERR, i2cprops, fmt, ##arg); \
107 #define __tuner_dbg(i2cprops, fmt, arg...) do { \ argument
109 tuner_printk(KERN_DEBUG, i2cprops, fmt, ##arg); \