diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-06-19 21:20:49 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-20 06:22:59 -0400 |
commit | c65c7a652ff10b86d33eda36f9c4200027bd8dd4 (patch) | |
tree | 783c2abf20cc6950283a781a1c868f673dfe5495 /drivers/media/dvb | |
parent | 2522dc13245073f75399ada8e7f6acecde834953 (diff) |
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>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/siano/smscoreapi.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/media/dvb/siano/smscoreapi.h b/drivers/media/dvb/siano/smscoreapi.h index b84606b30fd8..eb0ed6542e94 100644 --- a/drivers/media/dvb/siano/smscoreapi.h +++ b/drivers/media/dvb/siano/smscoreapi.h | |||
@@ -429,11 +429,9 @@ extern int sms_debug; | |||
429 | sms_printk(kern, fmt, ##arg); } while (0) | 429 | sms_printk(kern, fmt, ##arg); } while (0) |
430 | 430 | ||
431 | #define sms_err(fmt, arg...) \ | 431 | #define sms_err(fmt, arg...) \ |
432 | sms_printk(KERN_ERR, "%s() line: %d: " fmt "\n", \ | 432 | sms_printk(KERN_ERR, "line: %d: " fmt, __LINE__, ##arg) |
433 | __func__, __LINE__, ##arg) | ||
434 | #define sms_warn(fmt, arg...) \ | 433 | #define sms_warn(fmt, arg...) \ |
435 | sms_printk(KERN_WARNING, "%s() line: %d: " fmt "\n", \ | 434 | sms_printk(KERN_WARNING, "line: %d: " fmt, __LINE__, ##arg) |
436 | __func__, __LINE__, ##arg) | ||
437 | #define sms_info(fmt, arg...) \ | 435 | #define sms_info(fmt, arg...) \ |
438 | dprintk(KERN_INFO, DBG_INFO, fmt, ##arg) | 436 | dprintk(KERN_INFO, DBG_INFO, fmt, ##arg) |
439 | #define sms_debug(fmt, arg...) \ | 437 | #define sms_debug(fmt, arg...) \ |