aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2021-02-01 09:40:56 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-02-05 23:53:20 +0100
commit063b811f34650bf88e24998eb9c094607cb3b53e (patch)
tree7d099baa2305206ab53b67f5a341c1f058826762 /drivers/media/usb
parentmedia: vidtv: adapter->mdev was set too late (diff)
downloadlinux-dev-063b811f34650bf88e24998eb9c094607cb3b53e.tar.xz
linux-dev-063b811f34650bf88e24998eb9c094607cb3b53e.zip
media: uvc: strncpy -> strscpy
The use of strncpy is discouraged, use strscpy instead. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/usb')
-rw-r--r--drivers/media/usb/uvc/uvc_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c
index 1abc122a0977..30ef2a3110f7 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -1553,7 +1553,7 @@ static int uvc_gpio_parse(struct uvc_device *dev)
unit->gpio.bmControls[0] = 1;
unit->get_cur = uvc_gpio_get_cur;
unit->get_info = uvc_gpio_get_info;
- strncpy(unit->name, "GPIO", sizeof(unit->name) - 1);
+ strscpy(unit->name, "GPIO", sizeof(unit->name));
list_add_tail(&unit->list, &dev->entities);