Commit 22b4e64f authored by Harvey Harrison's avatar Harvey Harrison Committed by Mauro Carvalho Chehab

V4L/DVB (7520): media/video/cx23885 replace remaining __FUNCTION__ occurrences

__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 94205c7a
...@@ -264,7 +264,7 @@ int cx23885_tuner_callback(void *priv, int command, int arg) ...@@ -264,7 +264,7 @@ int cx23885_tuner_callback(void *priv, int command, int arg)
} }
else { else {
printk(KERN_ERR printk(KERN_ERR
"%s(): Unknow command.\n", __FUNCTION__); "%s(): Unknow command.\n", __func__);
return -EINVAL; return -EINVAL;
} }
break; break;
......
This diff is collapsed.
...@@ -185,7 +185,7 @@ static int cx23885_hvr1500_xc3028_callback(void *ptr, int command, int arg) ...@@ -185,7 +185,7 @@ static int cx23885_hvr1500_xc3028_callback(void *ptr, int command, int arg)
case XC2028_TUNER_RESET: case XC2028_TUNER_RESET:
/* Send the tuner in then out of reset */ /* Send the tuner in then out of reset */
/* GPIO-2 xc3028 tuner */ /* GPIO-2 xc3028 tuner */
dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __FUNCTION__, arg); dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __func__, arg);
cx_set(GP0_IO, 0x00040000); cx_set(GP0_IO, 0x00040000);
cx_clear(GP0_IO, 0x00000004); cx_clear(GP0_IO, 0x00000004);
...@@ -195,10 +195,10 @@ static int cx23885_hvr1500_xc3028_callback(void *ptr, int command, int arg) ...@@ -195,10 +195,10 @@ static int cx23885_hvr1500_xc3028_callback(void *ptr, int command, int arg)
msleep(5); msleep(5);
break; break;
case XC2028_RESET_CLK: case XC2028_RESET_CLK:
dprintk(1, "%s: XC2028_RESET_CLK %d\n", __FUNCTION__, arg); dprintk(1, "%s: XC2028_RESET_CLK %d\n", __func__, arg);
break; break;
default: default:
dprintk(1, "%s: unknown command %d, arg %d\n", __FUNCTION__, dprintk(1, "%s: unknown command %d, arg %d\n", __func__,
command, arg); command, arg);
return -EINVAL; return -EINVAL;
} }
...@@ -341,7 +341,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port) ...@@ -341,7 +341,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port)
struct cx23885_dev *dev = port->dev; struct cx23885_dev *dev = port->dev;
int err; int err;
dprintk(1, "%s\n", __FUNCTION__); dprintk(1, "%s\n", __func__);
dprintk(1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", dprintk(1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n",
dev->board, dev->board,
dev->name, dev->name,
...@@ -357,7 +357,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port) ...@@ -357,7 +357,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port)
sizeof(struct cx23885_buffer), port); sizeof(struct cx23885_buffer), port);
err = dvb_register(port); err = dvb_register(port);
if (err != 0) if (err != 0)
printk("%s() dvb_register failed err = %d\n", __FUNCTION__, err); printk("%s() dvb_register failed err = %d\n", __func__, err);
return err; return err;
} }
......
...@@ -87,10 +87,10 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap, ...@@ -87,10 +87,10 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap,
int retval, cnt; int retval, cnt;
if (joined_rlen) if (joined_rlen)
dprintk(1, "%s(msg->wlen=%d, nextmsg->rlen=%d)\n", __FUNCTION__, dprintk(1, "%s(msg->wlen=%d, nextmsg->rlen=%d)\n", __func__,
msg->len, joined_rlen); msg->len, joined_rlen);
else else
dprintk(1, "%s(msg->len=%d)\n", __FUNCTION__, msg->len); dprintk(1, "%s(msg->len=%d)\n", __func__, msg->len);
/* Deal with i2c probe functions with zero payload */ /* Deal with i2c probe functions with zero payload */
if (msg->len == 0) { if (msg->len == 0) {
...@@ -101,7 +101,7 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap, ...@@ -101,7 +101,7 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap,
if (!i2c_slave_did_ack(i2c_adap)) if (!i2c_slave_did_ack(i2c_adap))
return -EIO; return -EIO;
dprintk(1, "%s() returns 0\n", __FUNCTION__); dprintk(1, "%s() returns 0\n", __func__);
return 0; return 0;
} }
...@@ -176,7 +176,7 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap, ...@@ -176,7 +176,7 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap,
if (i2c_debug && !joined) if (i2c_debug && !joined)
dprintk(1, "%s(msg->len=%d)\n", __FUNCTION__, msg->len); dprintk(1, "%s(msg->len=%d)\n", __func__, msg->len);
/* Deal with i2c probe functions with zero payload */ /* Deal with i2c probe functions with zero payload */
if (msg->len == 0) { if (msg->len == 0) {
...@@ -188,7 +188,7 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap, ...@@ -188,7 +188,7 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap,
return -EIO; return -EIO;
dprintk(1, "%s() returns 0\n", __FUNCTION__); dprintk(1, "%s() returns 0\n", __func__);
return 0; return 0;
} }
...@@ -238,11 +238,11 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap, ...@@ -238,11 +238,11 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap,
struct cx23885_dev *dev = bus->dev; struct cx23885_dev *dev = bus->dev;
int i, retval = 0; int i, retval = 0;
dprintk(1, "%s(num = %d)\n", __FUNCTION__, num); dprintk(1, "%s(num = %d)\n", __func__, num);
for (i = 0 ; i < num; i++) { for (i = 0 ; i < num; i++) {
dprintk(1, "%s(num = %d) addr = 0x%02x len = 0x%x\n", dprintk(1, "%s(num = %d) addr = 0x%02x len = 0x%x\n",
__FUNCTION__, num, msgs[i].addr, msgs[i].len); __func__, num, msgs[i].addr, msgs[i].len);
if (msgs[i].flags & I2C_M_RD) { if (msgs[i].flags & I2C_M_RD) {
/* read */ /* read */
retval = i2c_readbytes(i2c_adap, &msgs[i], 0); retval = i2c_readbytes(i2c_adap, &msgs[i], 0);
...@@ -383,7 +383,7 @@ int cx23885_i2c_register(struct cx23885_i2c *bus) ...@@ -383,7 +383,7 @@ int cx23885_i2c_register(struct cx23885_i2c *bus)
{ {
struct cx23885_dev *dev = bus->dev; struct cx23885_dev *dev = bus->dev;
dprintk(1, "%s(bus = %d)\n", __FUNCTION__, bus->nr); dprintk(1, "%s(bus = %d)\n", __func__, bus->nr);
memcpy(&bus->i2c_adap, &cx23885_i2c_adap_template, memcpy(&bus->i2c_adap, &cx23885_i2c_adap_template,
sizeof(bus->i2c_adap)); sizeof(bus->i2c_adap));
......
...@@ -141,7 +141,7 @@ static struct cx23885_fmt *format_by_fourcc(unsigned int fourcc) ...@@ -141,7 +141,7 @@ static struct cx23885_fmt *format_by_fourcc(unsigned int fourcc)
if (formats[i].fourcc == fourcc) if (formats[i].fourcc == fourcc)
return formats+i; return formats+i;
printk(KERN_ERR "%s(0x%08x) NOT FOUND\n", __FUNCTION__, fourcc); printk(KERN_ERR "%s(0x%08x) NOT FOUND\n", __func__, fourcc);
return NULL; return NULL;
} }
...@@ -292,13 +292,13 @@ void cx23885_video_wakeup(struct cx23885_dev *dev, ...@@ -292,13 +292,13 @@ void cx23885_video_wakeup(struct cx23885_dev *dev,
} }
if (bc != 1) if (bc != 1)
printk(KERN_ERR "%s: %d buffers handled (should be 1)\n", printk(KERN_ERR "%s: %d buffers handled (should be 1)\n",
__FUNCTION__, bc); __func__, bc);
} }
int cx23885_set_tvnorm(struct cx23885_dev *dev, v4l2_std_id norm) int cx23885_set_tvnorm(struct cx23885_dev *dev, v4l2_std_id norm)
{ {
dprintk(1, "%s(norm = 0x%08x) name: [%s]\n", dprintk(1, "%s(norm = 0x%08x) name: [%s]\n",
__FUNCTION__, __func__,
(unsigned int)norm, (unsigned int)norm,
v4l2_norm_to_name(norm)); v4l2_norm_to_name(norm));
...@@ -319,7 +319,7 @@ struct video_device *cx23885_vdev_init(struct cx23885_dev *dev, ...@@ -319,7 +319,7 @@ struct video_device *cx23885_vdev_init(struct cx23885_dev *dev,
char *type) char *type)
{ {
struct video_device *vfd; struct video_device *vfd;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
vfd = video_device_alloc(); vfd = video_device_alloc();
if (NULL == vfd) if (NULL == vfd)
...@@ -358,7 +358,7 @@ EXPORT_SYMBOL(cx23885_ctrl_query); ...@@ -358,7 +358,7 @@ EXPORT_SYMBOL(cx23885_ctrl_query);
static int res_get(struct cx23885_dev *dev, struct cx23885_fh *fh, static int res_get(struct cx23885_dev *dev, struct cx23885_fh *fh,
unsigned int bit) unsigned int bit)
{ {
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
if (fh->resources & bit) if (fh->resources & bit)
/* have it already allocated */ /* have it already allocated */
return 1; return 1;
...@@ -392,7 +392,7 @@ static void res_free(struct cx23885_dev *dev, struct cx23885_fh *fh, ...@@ -392,7 +392,7 @@ static void res_free(struct cx23885_dev *dev, struct cx23885_fh *fh,
unsigned int bits) unsigned int bits)
{ {
BUG_ON((fh->resources & bits) != bits); BUG_ON((fh->resources & bits) != bits);
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
mutex_lock(&dev->lock); mutex_lock(&dev->lock);
fh->resources &= ~bits; fh->resources &= ~bits;
...@@ -407,7 +407,7 @@ int cx23885_video_mux(struct cx23885_dev *dev, unsigned int input) ...@@ -407,7 +407,7 @@ int cx23885_video_mux(struct cx23885_dev *dev, unsigned int input)
memset(&route, 0, sizeof(route)); memset(&route, 0, sizeof(route));
dprintk(1, "%s() video_mux: %d [vmux=%d, gpio=0x%x,0x%x,0x%x,0x%x]\n", dprintk(1, "%s() video_mux: %d [vmux=%d, gpio=0x%x,0x%x,0x%x,0x%x]\n",
__FUNCTION__, __func__,
input, INPUT(input)->vmux, input, INPUT(input)->vmux,
INPUT(input)->gpio0, INPUT(input)->gpio1, INPUT(input)->gpio0, INPUT(input)->gpio1,
INPUT(input)->gpio2, INPUT(input)->gpio3); INPUT(input)->gpio2, INPUT(input)->gpio3);
...@@ -427,7 +427,7 @@ EXPORT_SYMBOL(cx23885_video_mux); ...@@ -427,7 +427,7 @@ EXPORT_SYMBOL(cx23885_video_mux);
int cx23885_set_scale(struct cx23885_dev *dev, unsigned int width, int cx23885_set_scale(struct cx23885_dev *dev, unsigned int width,
unsigned int height, enum v4l2_field field) unsigned int height, enum v4l2_field field)
{ {
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
return 0; return 0;
} }
...@@ -435,7 +435,7 @@ static int cx23885_start_video_dma(struct cx23885_dev *dev, ...@@ -435,7 +435,7 @@ static int cx23885_start_video_dma(struct cx23885_dev *dev,
struct cx23885_dmaqueue *q, struct cx23885_dmaqueue *q,
struct cx23885_buffer *buf) struct cx23885_buffer *buf)
{ {
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
/* setup fifo + format */ /* setup fifo + format */
cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH01], cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH01],
...@@ -463,7 +463,7 @@ static int cx23885_restart_video_queue(struct cx23885_dev *dev, ...@@ -463,7 +463,7 @@ static int cx23885_restart_video_queue(struct cx23885_dev *dev,
{ {
struct cx23885_buffer *buf, *prev; struct cx23885_buffer *buf, *prev;
struct list_head *item; struct list_head *item;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
if (!list_empty(&q->active)) { if (!list_empty(&q->active)) {
buf = list_entry(q->active.next, struct cx23885_buffer, buf = list_entry(q->active.next, struct cx23885_buffer,
...@@ -579,13 +579,13 @@ static int buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb, ...@@ -579,13 +579,13 @@ static int buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
if (dev->tvnorm & V4L2_STD_NTSC) { if (dev->tvnorm & V4L2_STD_NTSC) {
/* cx25840 transmits NTSC bottom field first */ /* cx25840 transmits NTSC bottom field first */
dprintk(1, "%s() Creating NTSC risc\n", dprintk(1, "%s() Creating NTSC risc\n",
__FUNCTION__); __func__);
line0_offset = buf->bpl; line0_offset = buf->bpl;
line1_offset = 0; line1_offset = 0;
} else { } else {
/* All other formats are top field first */ /* All other formats are top field first */
dprintk(1, "%s() Creating PAL/SECAM risc\n", dprintk(1, "%s() Creating PAL/SECAM risc\n",
__FUNCTION__); __func__);
line0_offset = 0; line0_offset = 0;
line1_offset = buf->bpl; line1_offset = buf->bpl;
} }
...@@ -885,7 +885,7 @@ static int video_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -885,7 +885,7 @@ static int video_mmap(struct file *file, struct vm_area_struct *vma)
int cx23885_get_control(struct cx23885_dev *dev, struct v4l2_control *ctl) int cx23885_get_control(struct cx23885_dev *dev, struct v4l2_control *ctl)
{ {
dprintk(1, "%s() calling cx25840(VIDIOC_G_CTRL)\n", __FUNCTION__); dprintk(1, "%s() calling cx25840(VIDIOC_G_CTRL)\n", __func__);
cx23885_call_i2c_clients(&dev->i2c_bus[2], VIDIOC_G_CTRL, ctl); cx23885_call_i2c_clients(&dev->i2c_bus[2], VIDIOC_G_CTRL, ctl);
return 0; return 0;
} }
...@@ -894,7 +894,7 @@ EXPORT_SYMBOL(cx23885_get_control); ...@@ -894,7 +894,7 @@ EXPORT_SYMBOL(cx23885_get_control);
int cx23885_set_control(struct cx23885_dev *dev, struct v4l2_control *ctl) int cx23885_set_control(struct cx23885_dev *dev, struct v4l2_control *ctl)
{ {
dprintk(1, "%s() calling cx25840(VIDIOC_S_CTRL)" dprintk(1, "%s() calling cx25840(VIDIOC_S_CTRL)"
" (disabled - no action)\n", __FUNCTION__); " (disabled - no action)\n", __func__);
return 0; return 0;
} }
EXPORT_SYMBOL(cx23885_set_control); EXPORT_SYMBOL(cx23885_set_control);
...@@ -990,7 +990,7 @@ static int vidioc_s_fmt_cap(struct file *file, void *priv, ...@@ -990,7 +990,7 @@ static int vidioc_s_fmt_cap(struct file *file, void *priv,
struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev; struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
int err; int err;
dprintk(2, "%s()\n", __FUNCTION__); dprintk(2, "%s()\n", __func__);
err = vidioc_try_fmt_cap(file, priv, f); err = vidioc_try_fmt_cap(file, priv, f);
if (0 != err) if (0 != err)
...@@ -999,7 +999,7 @@ static int vidioc_s_fmt_cap(struct file *file, void *priv, ...@@ -999,7 +999,7 @@ static int vidioc_s_fmt_cap(struct file *file, void *priv,
fh->width = f->fmt.pix.width; fh->width = f->fmt.pix.width;
fh->height = f->fmt.pix.height; fh->height = f->fmt.pix.height;
fh->vidq.field = f->fmt.pix.field; fh->vidq.field = f->fmt.pix.field;
dprintk(2, "%s() width=%d height=%d field=%d\n", __FUNCTION__, dprintk(2, "%s() width=%d height=%d field=%d\n", __func__,
fh->width, fh->height, fh->vidq.field); fh->width, fh->height, fh->vidq.field);
cx23885_call_i2c_clients(&dev->i2c_bus[2], VIDIOC_S_FMT, f); cx23885_call_i2c_clients(&dev->i2c_bus[2], VIDIOC_S_FMT, f);
return 0; return 0;
...@@ -1101,7 +1101,7 @@ static int vidioc_streamon(struct file *file, void *priv, ...@@ -1101,7 +1101,7 @@ static int vidioc_streamon(struct file *file, void *priv,
{ {
struct cx23885_fh *fh = priv; struct cx23885_fh *fh = priv;
struct cx23885_dev *dev = fh->dev; struct cx23885_dev *dev = fh->dev;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
if (unlikely(fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)) if (unlikely(fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE))
return -EINVAL; return -EINVAL;
...@@ -1118,7 +1118,7 @@ static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) ...@@ -1118,7 +1118,7 @@ static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
struct cx23885_fh *fh = priv; struct cx23885_fh *fh = priv;
struct cx23885_dev *dev = fh->dev; struct cx23885_dev *dev = fh->dev;
int err, res; int err, res;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL; return -EINVAL;
...@@ -1136,7 +1136,7 @@ static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) ...@@ -1136,7 +1136,7 @@ static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *tvnorms) static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *tvnorms)
{ {
struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev; struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
mutex_lock(&dev->lock); mutex_lock(&dev->lock);
cx23885_set_tvnorm(dev, *tvnorms); cx23885_set_tvnorm(dev, *tvnorms);
...@@ -1159,7 +1159,7 @@ int cx23885_enum_input(struct cx23885_dev *dev, struct v4l2_input *i) ...@@ -1159,7 +1159,7 @@ int cx23885_enum_input(struct cx23885_dev *dev, struct v4l2_input *i)
[CX23885_VMUX_DEBUG] = "for debug only", [CX23885_VMUX_DEBUG] = "for debug only",
}; };
unsigned int n; unsigned int n;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
n = i->index; n = i->index;
if (n >= 4) if (n >= 4)
...@@ -1184,7 +1184,7 @@ static int vidioc_enum_input(struct file *file, void *priv, ...@@ -1184,7 +1184,7 @@ static int vidioc_enum_input(struct file *file, void *priv,
struct v4l2_input *i) struct v4l2_input *i)
{ {
struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev; struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
return cx23885_enum_input(dev, i); return cx23885_enum_input(dev, i);
} }
...@@ -1193,7 +1193,7 @@ static int vidioc_g_input(struct file *file, void *priv, unsigned int *i) ...@@ -1193,7 +1193,7 @@ static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev; struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
*i = dev->input; *i = dev->input;
dprintk(1, "%s() returns %d\n", __FUNCTION__, *i); dprintk(1, "%s() returns %d\n", __func__, *i);
return 0; return 0;
} }
...@@ -1201,10 +1201,10 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int i) ...@@ -1201,10 +1201,10 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
{ {
struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev; struct cx23885_dev *dev = ((struct cx23885_fh *)priv)->dev;
dprintk(1, "%s(%d)\n", __FUNCTION__, i); dprintk(1, "%s(%d)\n", __func__, i);
if (i >= 4) { if (i >= 4) {
dprintk(1, "%s() -EINVAL\n", __FUNCTION__); dprintk(1, "%s() -EINVAL\n", __func__);
return -EINVAL; return -EINVAL;
} }
...@@ -1389,7 +1389,7 @@ int cx23885_video_irq(struct cx23885_dev *dev, u32 status) ...@@ -1389,7 +1389,7 @@ int cx23885_video_irq(struct cx23885_dev *dev, u32 status)
return handled; return handled;
cx_write(VID_A_INT_STAT, status); cx_write(VID_A_INT_STAT, status);
dprintk(2, "%s() status = 0x%08x\n", __FUNCTION__, status); dprintk(2, "%s() status = 0x%08x\n", __func__, status);
/* risc op code error */ /* risc op code error */
if (status & (1 << 16)) { if (status & (1 << 16)) {
printk(KERN_WARNING "%s/0: video risc op code error\n", printk(KERN_WARNING "%s/0: video risc op code error\n",
...@@ -1487,7 +1487,7 @@ static const struct file_operations radio_fops = { ...@@ -1487,7 +1487,7 @@ static const struct file_operations radio_fops = {
void cx23885_video_unregister(struct cx23885_dev *dev) void cx23885_video_unregister(struct cx23885_dev *dev)
{ {
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
cx_clear(PCI_INT_MSK, 1); cx_clear(PCI_INT_MSK, 1);
if (dev->video_dev) { if (dev->video_dev) {
...@@ -1505,7 +1505,7 @@ int cx23885_video_register(struct cx23885_dev *dev) ...@@ -1505,7 +1505,7 @@ int cx23885_video_register(struct cx23885_dev *dev)
{ {
int err; int err;
dprintk(1, "%s()\n", __FUNCTION__); dprintk(1, "%s()\n", __func__);
spin_lock_init(&dev->slock); spin_lock_init(&dev->slock);
/* Initialize VBI template */ /* Initialize VBI template */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment