aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/rtc/rtc-ds2404.c
diff options
context:
space:
mode:
authorJulia Lawall <julia.lawall@lip6.fr>2015-12-30 21:59:34 +0100
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-01-11 20:22:27 +0100
commitc4c23f58a96dcce177c996511363b85bf114ae8f (patch)
tree2f250398e928ac0799e52eb9a77b824fa3a8c0a7 /drivers/rtc/rtc-ds2404.c
parentrtc: s5m: Make register configuration per S2MPS device to remove exceptions (diff)
downloadwireguard-linux-c4c23f58a96dcce177c996511363b85bf114ae8f.tar.xz
wireguard-linux-c4c23f58a96dcce177c996511363b85bf114ae8f.zip
rtc: rtc-ds2404: constify ds2404_chip_ops structures
The ds2404_chip_ops structure is never modified, so declare it as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/rtc-ds2404.c')
-rw-r--r--drivers/rtc/rtc-ds2404.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-ds2404.c b/drivers/rtc/rtc-ds2404.c
index 7885edd3d507..16310fe79d76 100644
--- a/drivers/rtc/rtc-ds2404.c
+++ b/drivers/rtc/rtc-ds2404.c
@@ -48,7 +48,7 @@ struct ds2404_gpio {
struct ds2404 {
struct ds2404_gpio *gpio;
- struct ds2404_chip_ops *ops;
+ const struct ds2404_chip_ops *ops;
struct rtc_device *rtc;
};
@@ -95,7 +95,7 @@ static void ds2404_gpio_unmap(struct ds2404 *chip)
gpio_free(ds2404_gpio[i].gpio);
}
-static struct ds2404_chip_ops ds2404_gpio_ops = {
+static const struct ds2404_chip_ops ds2404_gpio_ops = {
.map_io = ds2404_gpio_map,
.unmap_io = ds2404_gpio_unmap,
};