Commit d0a3b650 authored by Rikard Falkeborn's avatar Rikard Falkeborn Committed by Alexandre Belloni

rtc: st-lpc: Constify st_rtc_ops

The only usage of st_rtc_ops is to assign its address to the ops field
in the rtc_device struct. which is a const pointer. Make it const to
allow the compiler to put it in read-only memory.
Signed-off-by: default avatarRikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20200913122644.35515-1-rikard.falkeborn@gmail.com
parent 2fc1af30
...@@ -173,7 +173,7 @@ static int st_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *t) ...@@ -173,7 +173,7 @@ static int st_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *t)
return 0; return 0;
} }
static struct rtc_class_ops st_rtc_ops = { static const struct rtc_class_ops st_rtc_ops = {
.read_time = st_rtc_read_time, .read_time = st_rtc_read_time,
.set_time = st_rtc_set_time, .set_time = st_rtc_set_time,
.read_alarm = st_rtc_read_alarm, .read_alarm = st_rtc_read_alarm,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment