From: Heiko Carstens Date: Mon, 8 Feb 2021 12:58:47 +0000 (+0100) Subject: s390/time: introduce new store_tod_clock_ext() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cc2c7db28f7924e9133adc06293a74838ddee59a;p=linux.git s390/time: introduce new store_tod_clock_ext() Introduce new store_tod_clock_ext() function, which is the same like store_tod_clock_ext_cc() except that it doesn't return a condition code. Signed-off-by: Heiko Carstens Signed-off-by: Vasily Gorbik --- diff --git a/arch/s390/include/asm/timex.h b/arch/s390/include/asm/timex.h index 24964579684b1..7bfdcae345155 100644 --- a/arch/s390/include/asm/timex.h +++ b/arch/s390/include/asm/timex.h @@ -65,6 +65,11 @@ static inline int store_tod_clock_ext_cc(union tod_clock *clk) return cc; } +static inline void store_tod_clock_ext(union tod_clock *tod) +{ + asm volatile("stcke %0" : "=Q" (*tod) : : "cc"); +} + static inline void set_clock_comparator(__u64 time) { asm volatile("sckc %0" : : "Q" (time));