aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tda8290.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-04-08 22:20:00 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:59 -0400
commit7e28adb2497f6b873516163e2d29210c11777613 (patch)
tree2f65ee1bcadb2915f196a277dbac83af99685481 /drivers/media/video/tda8290.c
parente9815ceea9733dfb236629f5b72f2e6486f66242 (diff)
V4L/DVB (7518): media/video/ 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>
Diffstat (limited to 'drivers/media/video/tda8290.c')
-rw-r--r--drivers/media/video/tda8290.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index 89afb19c9468..0ebb5b525e57 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -363,7 +363,7 @@ static void tda8295_set_params(struct dvb_frontend *fe,
363 363
364 set_audio(fe, params); 364 set_audio(fe, params);
365 365
366 tuner_dbg("%s: freq = %d\n", __FUNCTION__, params->frequency); 366 tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
367 367
368 tda8295_power(fe, 1); 368 tda8295_power(fe, 1);
369 tda8295_agc1_out(fe, 1); 369 tda8295_agc1_out(fe, 1);
@@ -613,7 +613,7 @@ static int tda8290_probe(struct tuner_i2c_props *i2c_props)
613 if (tda8290_id[1] == TDA8290_ID) { 613 if (tda8290_id[1] == TDA8290_ID) {
614 if (debug) 614 if (debug)
615 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n", 615 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
616 __FUNCTION__, i2c_adapter_id(i2c_props->adap), 616 __func__, i2c_adapter_id(i2c_props->adap),
617 i2c_props->addr); 617 i2c_props->addr);
618 return 0; 618 return 0;
619 } 619 }
@@ -633,7 +633,7 @@ static int tda8295_probe(struct tuner_i2c_props *i2c_props)
633 if (tda8295_id[1] == TDA8295_ID) { 633 if (tda8295_id[1] == TDA8295_ID) {
634 if (debug) 634 if (debug)
635 printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n", 635 printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
636 __FUNCTION__, i2c_adapter_id(i2c_props->adap), 636 __func__, i2c_adapter_id(i2c_props->adap),
637 i2c_props->addr); 637 i2c_props->addr);
638 return 0; 638 return 0;
639 } 639 }