diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-08 19:20:00 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-08 19:20:00 -0400 |
commit | 404143cab4c9a32af73db3de0751e586988e435a (patch) | |
tree | ded882811457a33368f0e18d0f5866594340d95e /linux/drivers/media/dvb/frontends/tda827x.h | |
parent | 621552763701b6f26fb764e243c7338126c8a5c2 (diff) | |
download | mediapointer-dvb-s2-404143cab4c9a32af73db3de0751e586988e435a.tar.gz mediapointer-dvb-s2-404143cab4c9a32af73db3de0751e586988e435a.tar.bz2 |
media/dvb/frontends replace remaining __FUNCTION__ occurrences
From: Harvey Harrison <harvey.harrison@gmail.com>
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda827x.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda827x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda827x.h b/linux/drivers/media/dvb/frontends/tda827x.h index cd3032f98..b73c23570 100644 --- a/linux/drivers/media/dvb/frontends/tda827x.h +++ b/linux/drivers/media/dvb/frontends/tda827x.h @@ -61,7 +61,7 @@ static inline struct dvb_frontend* tda827x_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct tda827x_config *cfg) { - printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); + printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return NULL; } #endif // CONFIG_DVB_TDA827X |