diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2017-03-13 15:07:24 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2017-06-05 14:38:14 -0400 |
commit | 58415efe96670b858eb7b5ab066881ae3f1dad25 (patch) | |
tree | e1b8c2770ad58b4aeae1710b853c87c778918fcd /drivers/watchdog | |
parent | 954351e8707bcdf6091cc55dab4e9e2453de6655 (diff) |
watchdog: s3c2410: Constify local structures
Structures watchdog_device, watchdog_ops and s3c2410_wdt_variant are not
modified so they can be made const to increase code safeness.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/s3c2410_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/s3c2410_wdt.c b/drivers/watchdog/s3c2410_wdt.c index 6ed97596ca80..52b66bcdd1ef 100644 --- a/drivers/watchdog/s3c2410_wdt.c +++ b/drivers/watchdog/s3c2410_wdt.c | |||
@@ -131,7 +131,7 @@ struct s3c2410_wdt { | |||
131 | unsigned long wtdat_save; | 131 | unsigned long wtdat_save; |
132 | struct watchdog_device wdt_device; | 132 | struct watchdog_device wdt_device; |
133 | struct notifier_block freq_transition; | 133 | struct notifier_block freq_transition; |
134 | struct s3c2410_wdt_variant *drv_data; | 134 | const struct s3c2410_wdt_variant *drv_data; |
135 | struct regmap *pmureg; | 135 | struct regmap *pmureg; |
136 | }; | 136 | }; |
137 | 137 | ||
@@ -401,7 +401,7 @@ static const struct watchdog_ops s3c2410wdt_ops = { | |||
401 | .restart = s3c2410wdt_restart, | 401 | .restart = s3c2410wdt_restart, |
402 | }; | 402 | }; |
403 | 403 | ||
404 | static struct watchdog_device s3c2410_wdd = { | 404 | static const struct watchdog_device s3c2410_wdd = { |
405 | .info = &s3c2410_wdt_ident, | 405 | .info = &s3c2410_wdt_ident, |
406 | .ops = &s3c2410wdt_ops, | 406 | .ops = &s3c2410wdt_ops, |
407 | .timeout = S3C2410_WATCHDOG_DEFAULT_TIME, | 407 | .timeout = S3C2410_WATCHDOG_DEFAULT_TIME, |
@@ -507,7 +507,7 @@ static inline unsigned int s3c2410wdt_get_bootstatus(struct s3c2410_wdt *wdt) | |||
507 | return 0; | 507 | return 0; |
508 | } | 508 | } |
509 | 509 | ||
510 | static inline struct s3c2410_wdt_variant * | 510 | static inline const struct s3c2410_wdt_variant * |
511 | s3c2410_get_wdt_drv_data(struct platform_device *pdev) | 511 | s3c2410_get_wdt_drv_data(struct platform_device *pdev) |
512 | { | 512 | { |
513 | if (pdev->dev.of_node) { | 513 | if (pdev->dev.of_node) { |