From: Stefan Weil Date: Sun, 4 Nov 2012 20:42:08 +0000 (+0100) Subject: qemu-timer: Fix compilation for non-POSIX hosts X-Git-Tag: v1.3.0-rc0~57 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=253ecf83bcc658316bab3250401943d9b44c7898;p=thirdparty%2Fqemu.git qemu-timer: Fix compilation for non-POSIX hosts A compiler warning is caused by the unused local function reinit_timers on non-POSIX hosts. Include that function only for POSIX hosts. Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/qemu-timer.c b/qemu-timer.c index 8d9cf38bb26..0d2bb94289b 100644 --- a/qemu-timer.c +++ b/qemu-timer.c @@ -745,6 +745,7 @@ static void quit_timers(void) t->stop(t); } +#ifdef CONFIG_POSIX static void reinit_timers(void) { struct qemu_alarm_timer *t = alarm_timer; @@ -755,6 +756,7 @@ static void reinit_timers(void) } qemu_rearm_alarm_timer(t); } +#endif /* CONFIG_POSIX */ int init_timer_alarm(void) {