V4L/DVB (7511): media/dvb/cinergyT2 replace remaining __FUNCTION__ occurrences

__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Harvey Harrison 2008-04-08 23:20:00 -03:00 committed by Mauro Carvalho Chehab
parent b2e62e7cdb
commit 0592e8d348
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");
do { \
if ((debug & level)) { \
printk("%s: %s(): ", KBUILD_MODNAME, \
__FUNCTION__); \
__func__); \
printk(args); } \
} while (0)