aboutsummaryrefslogtreecommitdiff
path: root/hw/s390x/tod-tcg.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-11-29 20:55:05 +0000
committerPeter Maydell <peter.maydell@linaro.org>2022-01-28 14:29:46 +0000
commit2f93d8b04a1bcc8e0a576e35ae13c96af42634db (patch)
tree43d1e77588ca78e05ee83d90dedcc3bfec6fca4f /hw/s390x/tod-tcg.c
parent617dff091f3478db9a44320df03f74b9df0617fb (diff)
downloadqemu-2f93d8b04a1bcc8e0a576e35ae13c96af42634db.zip
qemu-2f93d8b04a1bcc8e0a576e35ae13c96af42634db.tar.gz
qemu-2f93d8b04a1bcc8e0a576e35ae13c96af42634db.tar.bz2
rtc: Move RTC function prototypes to their own header
softmmu/rtc.c defines two public functions: qemu_get_timedate() and qemu_timedate_diff(). Currently we keep the prototypes for these in qemu-common.h, but most files don't need them. Move them to their own header, a new include/sysemu/rtc.h. Since the C files using these two functions did not need to include qemu-common.h for any other reason, we can remove those include lines when we add the include of the new rtc.h. The license for the .h file follows that of the softmmu/rtc.c where both the functions are defined. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/s390x/tod-tcg.c')
-rw-r--r--hw/s390x/tod-tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/tod-tcg.c b/hw/s390x/tod-tcg.c
index 9bb94ff..7646b4a 100644
--- a/hw/s390x/tod-tcg.c
+++ b/hw/s390x/tod-tcg.c
@@ -9,7 +9,6 @@
*/
#include "qemu/osdep.h"
-#include "qemu-common.h"
#include "qapi/error.h"
#include "hw/s390x/tod.h"
#include "qemu/timer.h"
@@ -17,6 +16,7 @@
#include "qemu/module.h"
#include "cpu.h"
#include "tcg/tcg_s390x.h"
+#include "sysemu/rtc.h"
static void qemu_s390_tod_get(const S390TODState *td, S390TOD *tod,
Error **errp)