Lines Matching refs:i2cprops
75 #define tuner_printk(kernlvl, i2cprops, fmt, arg...) do { \ argument
76 printk(kernlvl "%s %d-%04x: " fmt, i2cprops.name, \
77 i2cprops.adap ? \
78 i2c_adapter_id(i2cprops.adap) : -1, \
79 i2cprops.addr, ##arg); \
85 #define __tuner_warn(i2cprops, fmt, arg...) do { \ argument
86 tuner_printk(KERN_WARNING, i2cprops, fmt, ##arg); \
89 #define __tuner_info(i2cprops, fmt, arg...) do { \ argument
90 tuner_printk(KERN_INFO, i2cprops, fmt, ##arg); \
93 #define __tuner_err(i2cprops, fmt, arg...) do { \ argument
94 tuner_printk(KERN_ERR, i2cprops, fmt, ##arg); \
97 #define __tuner_dbg(i2cprops, fmt, arg...) do { \ argument
99 tuner_printk(KERN_DEBUG, i2cprops, fmt, ##arg); \