From 206654728b433c18b59d7c28a3ac67da2e28f0c3 Mon Sep 17 00:00:00 2001 From: Monam Agarwal Date: Fri, 7 Mar 2014 17:03:08 +0530 Subject: [PATCH] Staging: dgnc: Fix struct file_operations should normally be const This patch fixes following checkpatch.pl warning: WARNING:struct file_operations should normally be const Signed-off-by: Monam Agarwal Acked-by: Paul E. McKenney Signed-off-by: Greg Kroah-Hartman --- drivers/staging/dgnc/dgnc_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/dgnc/dgnc_driver.c b/drivers/staging/dgnc/dgnc_driver.c index c204266cb69f..20be96d54090 100644 --- a/drivers/staging/dgnc/dgnc_driver.c +++ b/drivers/staging/dgnc/dgnc_driver.c @@ -88,7 +88,7 @@ module_exit(dgnc_cleanup_module); /* * File operations permitted on Control/Management major. */ -static struct file_operations dgnc_BoardFops = +static const struct file_operations dgnc_BoardFops = { .owner = THIS_MODULE, .unlocked_ioctl = dgnc_mgmt_ioctl, -- 2.34.1