All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] watchdog: coh901327_wdt: constify watchdog_ops structure
@ 2017-07-08  0:33 ` Gustavo A. R. Silva
  0 siblings, 0 replies; 8+ messages in thread
From: Gustavo A. R. Silva @ 2017-07-08  0:33 UTC (permalink / raw)
  To: Linus Walleij, Wim Van Sebroeck, Guenter Roeck
  Cc: linux-arm-kernel, linux-watchdog, linux-kernel,
	Gustavo A. R. Silva

Check for watchdog_ops structures that are only stored in the ops field of
a watchdog_device structure. This field is declared const, so watchdog_ops
structures that have this property can be declared as const also.

This issue was detected using Coccinelle and the following semantic patch:

@r
disable optional_qualifier@
identifier i;
position p;
@@
static struct watchdog_ops i@p = { ... };

@ok@
identifier r.i;
struct watchdog_device e;
position p;
@@
e.ops = &i@p;

@bad@
position p != {r.p,ok.p};
identifier r.i;
struct watchdog_ops e;
@@
e@i@p

@depends on !bad disable optional_qualifier@
identifier r.i;
@@
static
+const
 struct watchdog_ops i = { ... };

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
---
 drivers/watchdog/coh901327_wdt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/watchdog/coh901327_wdt.c b/drivers/watchdog/coh901327_wdt.c
index 38dd60f0..4410337 100644
--- a/drivers/watchdog/coh901327_wdt.c
+++ b/drivers/watchdog/coh901327_wdt.c
@@ -218,7 +218,7 @@ static const struct watchdog_info coh901327_ident = {
 	.identity = DRV_NAME,
 };
 
-static struct watchdog_ops coh901327_ops = {
+static const struct watchdog_ops coh901327_ops = {
 	.owner = THIS_MODULE,
 	.start = coh901327_start,
 	.stop = coh901327_stop,
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-08-02  8:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-08  0:33 [PATCH] watchdog: coh901327_wdt: constify watchdog_ops structure Gustavo A. R. Silva
2017-07-08  0:33 ` Gustavo A. R. Silva
2017-07-08  1:45 ` Guenter Roeck
2017-07-08  1:45   ` Guenter Roeck
2017-07-17  4:03   ` Gustavo A. R. Silva
2017-07-17  4:03     ` Gustavo A. R. Silva
2017-08-02  8:24 ` Linus Walleij
2017-08-02  8:24   ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.