From: Sakari Ailus Date: Wed, 29 Aug 2018 10:01:48 +0000 (-0400) Subject: media: v4l: sr030pc30: Remove redundant setting of sub-device name X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=7d3073f13ea85a1e8b868502fa6735696a629060;p=openwrt%2Fstaging%2Fblogic.git media: v4l: sr030pc30: Remove redundant setting of sub-device name The sub-device name is set right after in v4l2_i2c_subdev_init(). Remove the redundant strcpy() call. Signed-off-by: Sakari Ailus Acked-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/sr030pc30.c b/drivers/media/i2c/sr030pc30.c index 344666293f7d..3d3fb1cda28c 100644 --- a/drivers/media/i2c/sr030pc30.c +++ b/drivers/media/i2c/sr030pc30.c @@ -703,7 +703,6 @@ static int sr030pc30_probe(struct i2c_client *client, return -ENOMEM; sd = &info->sd; - strscpy(sd->name, MODULE_NAME, sizeof(sd->name)); info->pdata = client->dev.platform_data; v4l2_i2c_subdev_init(sd, client, &sr030pc30_ops);