aboutsummaryrefslogtreecommitdiff
path: root/drivers/media
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-06-19 22:20:49 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-07-20 07:22:59 -0300
commitc65c7a652ff10b86d33eda36f9c4200027bd8dd4 (patch)
tree783c2abf20cc6950283a781a1c868f673dfe5495 /drivers/media
parent2522dc13245073f75399ada8e7f6acecde834953 (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')
-rw-r--r--drivers/media/dvb/siano/smscoreapi.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/media/dvb/siano/smscoreapi.h b/drivers/media/dvb/siano/smscoreapi.h
index b84606b30fd..eb0ed6542e9 100644
--- a/drivers/media/dvb/siano/smscoreapi.h
+++ b/drivers/media/dvb/siano/smscoreapi.h
@@ -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...) \