diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2009-03-18 04:18:43 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-03-25 05:06:18 -0400 |
commit | d5c26a597782d4109869abbcc36983969f964864 (patch) | |
tree | 7493f199dd18bae2bb4b1fde20f4cbd8a66e27de /drivers/watchdog | |
parent | 927d69611398f046c4447ce5ded992321c8f90ff (diff) |
[WATCHDOG] struct file_operations should be const
Fix following warnings:
WARNING: struct file_operations should normally be const
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/hpwdt.c | 2 | ||||
-rw-r--r-- | drivers/watchdog/rc32434_wdt.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c index dad4fe6e20fc..7cf32ad96fd1 100644 --- a/drivers/watchdog/hpwdt.c +++ b/drivers/watchdog/hpwdt.c | |||
@@ -602,7 +602,7 @@ static long hpwdt_ioctl(struct file *file, unsigned int cmd, | |||
602 | /* | 602 | /* |
603 | * Kernel interfaces | 603 | * Kernel interfaces |
604 | */ | 604 | */ |
605 | static struct file_operations hpwdt_fops = { | 605 | static const struct file_operations hpwdt_fops = { |
606 | .owner = THIS_MODULE, | 606 | .owner = THIS_MODULE, |
607 | .llseek = no_llseek, | 607 | .llseek = no_llseek, |
608 | .write = hpwdt_write, | 608 | .write = hpwdt_write, |
diff --git a/drivers/watchdog/rc32434_wdt.c b/drivers/watchdog/rc32434_wdt.c index 071ff7bb81d1..f6cccc9df022 100644 --- a/drivers/watchdog/rc32434_wdt.c +++ b/drivers/watchdog/rc32434_wdt.c | |||
@@ -247,7 +247,7 @@ static long rc32434_wdt_ioctl(struct file *file, unsigned int cmd, | |||
247 | return 0; | 247 | return 0; |
248 | } | 248 | } |
249 | 249 | ||
250 | static struct file_operations rc32434_wdt_fops = { | 250 | static const struct file_operations rc32434_wdt_fops = { |
251 | .owner = THIS_MODULE, | 251 | .owner = THIS_MODULE, |
252 | .llseek = no_llseek, | 252 | .llseek = no_llseek, |
253 | .write = rc32434_wdt_write, | 253 | .write = rc32434_wdt_write, |