|
@@ -562,7 +562,7 @@ static int usbtv_s_input(struct file *file, void *priv, unsigned int i)
|
|
|
return usbtv_select_input(usbtv, i);
|
|
|
}
|
|
|
|
|
|
-struct v4l2_ioctl_ops usbtv_ioctl_ops = {
|
|
|
+static struct v4l2_ioctl_ops usbtv_ioctl_ops = {
|
|
|
.vidioc_querycap = usbtv_querycap,
|
|
|
.vidioc_enum_input = usbtv_enum_input,
|
|
|
.vidioc_enum_fmt_vid_cap = usbtv_enum_fmt_vid_cap,
|
|
@@ -584,7 +584,7 @@ struct v4l2_ioctl_ops usbtv_ioctl_ops = {
|
|
|
.vidioc_streamoff = vb2_ioctl_streamoff,
|
|
|
};
|
|
|
|
|
|
-struct v4l2_file_operations usbtv_fops = {
|
|
|
+static struct v4l2_file_operations usbtv_fops = {
|
|
|
.owner = THIS_MODULE,
|
|
|
.unlocked_ioctl = video_ioctl2,
|
|
|
.mmap = vb2_fop_mmap,
|
|
@@ -645,7 +645,7 @@ static int usbtv_stop_streaming(struct vb2_queue *vq)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-struct vb2_ops usbtv_vb2_ops = {
|
|
|
+static struct vb2_ops usbtv_vb2_ops = {
|
|
|
.queue_setup = usbtv_queue_setup,
|
|
|
.buf_queue = usbtv_buf_queue,
|
|
|
.start_streaming = usbtv_start_streaming,
|