diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-08 22:20:00 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:07:58 -0400 |
commit | 708bebdd3922c6f346b8540f93c73f006d2b947b (patch) | |
tree | 1550b3d7bfc4991e140e040b41d60f240d5a39f8 /drivers/media/dvb/dvb-usb/cxusb.c | |
parent | 46b4f7c176a2dd4c60ddb7c80bd09ea2f3220674 (diff) |
V4L/DVB (7513): media/dvb/dvb-usb 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/dvb/dvb-usb/cxusb.c')
-rw-r--r-- | drivers/media/dvb/dvb-usb/cxusb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c index b75b2b7a1330..4e5118dfe2e0 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.c +++ b/drivers/media/dvb/dvb-usb/cxusb.c | |||
@@ -492,14 +492,14 @@ static int dvico_bluebird_xc2028_callback(void *ptr, int command, int arg) | |||
492 | 492 | ||
493 | switch (command) { | 493 | switch (command) { |
494 | case XC2028_TUNER_RESET: | 494 | case XC2028_TUNER_RESET: |
495 | deb_info("%s: XC2028_TUNER_RESET %d\n", __FUNCTION__, arg); | 495 | deb_info("%s: XC2028_TUNER_RESET %d\n", __func__, arg); |
496 | cxusb_bluebird_gpio_pulse(d, 0x01, 1); | 496 | cxusb_bluebird_gpio_pulse(d, 0x01, 1); |
497 | break; | 497 | break; |
498 | case XC2028_RESET_CLK: | 498 | case XC2028_RESET_CLK: |
499 | deb_info("%s: XC2028_RESET_CLK %d\n", __FUNCTION__, arg); | 499 | deb_info("%s: XC2028_RESET_CLK %d\n", __func__, arg); |
500 | break; | 500 | break; |
501 | default: | 501 | default: |
502 | deb_info("%s: unknown command %d, arg %d\n", __FUNCTION__, | 502 | deb_info("%s: unknown command %d, arg %d\n", __func__, |
503 | command, arg); | 503 | command, arg); |
504 | return -EINVAL; | 504 | return -EINVAL; |
505 | } | 505 | } |