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:59 -0400 |
commit | 32d83efc1c9e290b3d4627c6ec40529eafa89b46 (patch) | |
tree | 8eeeaa783d50984fe038729afd9d243f94921ff7 /drivers/media/video/cx88/cx88-dvb.c | |
parent | 22b4e64f0a119e94090ef45285a5c311f1f6855f (diff) |
V4L/DVB (7521): media/video/cx88 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/cx88/cx88-dvb.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-dvb.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c index 5e7c7fdb38a..8fc929eb47b 100644 --- a/drivers/media/video/cx88/cx88-dvb.c +++ b/drivers/media/video/cx88/cx88-dvb.c | |||
@@ -282,7 +282,7 @@ static int lgdt330x_pll_rf_set(struct dvb_frontend* fe, int index) | |||
282 | struct cx8802_dev *dev= fe->dvb->priv; | 282 | struct cx8802_dev *dev= fe->dvb->priv; |
283 | struct cx88_core *core = dev->core; | 283 | struct cx88_core *core = dev->core; |
284 | 284 | ||
285 | dprintk(1, "%s: index = %d\n", __FUNCTION__, index); | 285 | dprintk(1, "%s: index = %d\n", __func__, index); |
286 | if (index == 0) | 286 | if (index == 0) |
287 | cx_clear(MO_GP0_IO, 8); | 287 | cx_clear(MO_GP0_IO, 8); |
288 | else | 288 | else |
@@ -380,7 +380,7 @@ static int cx88_pci_nano_callback(void *ptr, int command, int arg) | |||
380 | switch (command) { | 380 | switch (command) { |
381 | case XC2028_TUNER_RESET: | 381 | case XC2028_TUNER_RESET: |
382 | /* Send the tuner in then out of reset */ | 382 | /* Send the tuner in then out of reset */ |
383 | dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __FUNCTION__, arg); | 383 | dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __func__, arg); |
384 | 384 | ||
385 | switch (core->boardnr) { | 385 | switch (core->boardnr) { |
386 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: | 386 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
@@ -396,10 +396,10 @@ static int cx88_pci_nano_callback(void *ptr, int command, int arg) | |||
396 | 396 | ||
397 | break; | 397 | break; |
398 | case XC2028_RESET_CLK: | 398 | case XC2028_RESET_CLK: |
399 | dprintk(1, "%s: XC2028_RESET_CLK %d\n", __FUNCTION__, arg); | 399 | dprintk(1, "%s: XC2028_RESET_CLK %d\n", __func__, arg); |
400 | break; | 400 | break; |
401 | default: | 401 | default: |
402 | dprintk(1, "%s: unknown command %d, arg %d\n", __FUNCTION__, | 402 | dprintk(1, "%s: unknown command %d, arg %d\n", __func__, |
403 | command, arg); | 403 | command, arg); |
404 | return -EINVAL; | 404 | return -EINVAL; |
405 | } | 405 | } |
@@ -872,7 +872,7 @@ static int cx8802_dvb_advise_acquire(struct cx8802_driver *drv) | |||
872 | { | 872 | { |
873 | struct cx88_core *core = drv->core; | 873 | struct cx88_core *core = drv->core; |
874 | int err = 0; | 874 | int err = 0; |
875 | dprintk( 1, "%s\n", __FUNCTION__); | 875 | dprintk( 1, "%s\n", __func__); |
876 | 876 | ||
877 | switch (core->boardnr) { | 877 | switch (core->boardnr) { |
878 | case CX88_BOARD_HAUPPAUGE_HVR1300: | 878 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
@@ -895,7 +895,7 @@ static int cx8802_dvb_advise_release(struct cx8802_driver *drv) | |||
895 | { | 895 | { |
896 | struct cx88_core *core = drv->core; | 896 | struct cx88_core *core = drv->core; |
897 | int err = 0; | 897 | int err = 0; |
898 | dprintk( 1, "%s\n", __FUNCTION__); | 898 | dprintk( 1, "%s\n", __func__); |
899 | 899 | ||
900 | switch (core->boardnr) { | 900 | switch (core->boardnr) { |
901 | case CX88_BOARD_HAUPPAUGE_HVR1300: | 901 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
@@ -913,7 +913,7 @@ static int cx8802_dvb_probe(struct cx8802_driver *drv) | |||
913 | struct cx8802_dev *dev = drv->core->dvbdev; | 913 | struct cx8802_dev *dev = drv->core->dvbdev; |
914 | int err; | 914 | int err; |
915 | 915 | ||
916 | dprintk( 1, "%s\n", __FUNCTION__); | 916 | dprintk( 1, "%s\n", __func__); |
917 | dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", | 917 | dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", |
918 | core->boardnr, | 918 | core->boardnr, |
919 | core->name, | 919 | core->name, |