diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2024-02-28 00:04:27 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2024-02-29 22:15:47 +0100 |
commit | 29c411f242ea3873c65efa95cfd3780b4b16f278 (patch) | |
tree | f6a4225abc92f9f62e56de754b29840fef60d5b6 | |
parent | 19922e879997858eec0cb5ce275b48834dcbc209 (diff) | |
download | lwn-29c411f242ea3873c65efa95cfd3780b4b16f278.tar.gz lwn-29c411f242ea3873c65efa95cfd3780b4b16f278.zip |
rtc: ds1511: drop inline/noinline hints
There is no reason to not let the compiler optimise those functions as it
wants.
Link: https://lore.kernel.org/r/20240227230431.1837717-12-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r-- | drivers/rtc/rtc-ds1511.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-ds1511.c b/drivers/rtc/rtc-ds1511.c index 39efd432e8ea..edb8d90812c5 100644 --- a/drivers/rtc/rtc-ds1511.c +++ b/drivers/rtc/rtc-ds1511.c @@ -71,17 +71,17 @@ static DEFINE_SPINLOCK(ds1511_lock); static __iomem char *ds1511_base; static u32 reg_spacing = 1; -static noinline void rtc_write(uint8_t val, uint32_t reg) +static void rtc_write(uint8_t val, uint32_t reg) { writeb(val, ds1511_base + (reg * reg_spacing)); } -static noinline uint8_t rtc_read(uint32_t reg) +static uint8_t rtc_read(uint32_t reg) { return readb(ds1511_base + (reg * reg_spacing)); } -static inline void rtc_disable_update(void) +static void rtc_disable_update(void) { rtc_write((rtc_read(DS1511_CONTROL_B) & ~DS1511_TE), DS1511_CONTROL_B); } |