Skip to content

Commit

Permalink
V4L/DVB (7526): media/video/saa7134 replace remaining __FUNCTION__ oc…
Browse files Browse the repository at this point in the history
…currences

__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>
  • Loading branch information
Harvey Harrison authored and Mauro Carvalho Chehab committed Apr 24, 2008
1 parent 645635b commit 5016381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/saa7134/saa7134-empress.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ static int empress_init(struct saa7134_dev *dev)
{
int err;

dprintk("%s: %s\n",dev->name,__FUNCTION__);
dprintk("%s: %s\n",dev->name,__func__);
dev->empress_dev = video_device_alloc();
if (NULL == dev->empress_dev)
return -ENOMEM;
Expand Down Expand Up @@ -440,7 +440,7 @@ static int empress_init(struct saa7134_dev *dev)

static int empress_fini(struct saa7134_dev *dev)
{
dprintk("%s: %s\n",dev->name,__FUNCTION__);
dprintk("%s: %s\n",dev->name,__func__);

if (NULL == dev->empress_dev)
return 0;
Expand Down

0 comments on commit 5016381

Please sign in to comment.