Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754788AbdHZLO2 (ORCPT ); Sat, 26 Aug 2017 07:14:28 -0400 Received: from mail-pf0-f195.google.com ([209.85.192.195]:32997 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752051AbdHZLOZ (ORCPT ); Sat, 26 Aug 2017 07:14:25 -0400 From: Bhumika Goyal To: julia.lawall@lip6.fr, mchehab@kernel.org, maintainers@bluecherrydvr.com, anton@corp.bluecherry.net, andrey.utkin@corp.bluecherry.net, ismael@iodev.co.uk, hverkuil@xs4all.nl, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Bhumika Goyal Subject: [PATCH 5/5] [media] tw68: make video_device const Date: Sat, 26 Aug 2017 16:43:34 +0530 Message-Id: <1503746014-16489-6-git-send-email-bhumirks@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1503746014-16489-1-git-send-email-bhumirks@gmail.com> References: <1503746014-16489-1-git-send-email-bhumirks@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 703 Lines: 22 Make this const as it is only used in a copy operation. Signed-off-by: Bhumika Goyal --- drivers/media/pci/tw68/tw68-video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/pci/tw68/tw68-video.c b/drivers/media/pci/tw68/tw68-video.c index 58c4dd7..8c1f4a0 100644 --- a/drivers/media/pci/tw68/tw68-video.c +++ b/drivers/media/pci/tw68/tw68-video.c @@ -916,7 +916,7 @@ static int vidioc_s_register(struct file *file, void *priv, #endif }; -static struct video_device tw68_video_template = { +static const struct video_device tw68_video_template = { .name = "tw68_video", .fops = &video_fops, .ioctl_ops = &video_ioctl_ops, -- 1.9.1