[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240709032633.586042-1-nichen@iscas.ac.cn>
Date: Tue, 9 Jul 2024 11:26:33 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: hverkuil-cisco@...all.nl,
benjamin.gaignard@...labora.com,
mchehab@...nel.org,
kees@...nel.org
Cc: linux-kernel@...r.kernel.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH] media: v4l2-pci-skeleton: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
---
samples/v4l/v4l2-pci-skeleton.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/samples/v4l/v4l2-pci-skeleton.c b/samples/v4l/v4l2-pci-skeleton.c
index 4fc2063b9f59..a131c27d5509 100644
--- a/samples/v4l/v4l2-pci-skeleton.c
+++ b/samples/v4l/v4l2-pci-skeleton.c
@@ -852,8 +852,8 @@ static int skeleton_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
* function. The release callback must be non-NULL.
*/
vdev->release = video_device_release_empty;
- vdev->fops = &skel_fops,
- vdev->ioctl_ops = &skel_ioctl_ops,
+ vdev->fops = &skel_fops;
+ vdev->ioctl_ops = &skel_ioctl_ops;
vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE |
V4L2_CAP_STREAMING;
/*
--
2.25.1
Powered by blists - more mailing lists