mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
V4L/DVB (8298): sms1xxx: remove redundant __func__ in sms_err macro
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
2522dc1324
commit
c65c7a652f
@ -429,11 +429,9 @@ extern int sms_debug;
|
||||
sms_printk(kern, fmt, ##arg); } while (0)
|
||||
|
||||
#define sms_err(fmt, arg...) \
|
||||
sms_printk(KERN_ERR, "%s() line: %d: " fmt "\n", \
|
||||
__func__, __LINE__, ##arg)
|
||||
sms_printk(KERN_ERR, "line: %d: " fmt, __LINE__, ##arg)
|
||||
#define sms_warn(fmt, arg...) \
|
||||
sms_printk(KERN_WARNING, "%s() line: %d: " fmt "\n", \
|
||||
__func__, __LINE__, ##arg)
|
||||
sms_printk(KERN_WARNING, "line: %d: " fmt, __LINE__, ##arg)
|
||||
#define sms_info(fmt, arg...) \
|
||||
dprintk(KERN_INFO, DBG_INFO, fmt, ##arg)
|
||||
#define sms_debug(fmt, arg...) \
|
||||
|
Loading…
Reference in New Issue
Block a user