From bdd7e1bc6f65c42a43f6177c46b95f87398b5411 Mon Sep 17 00:00:00 2001 From: "Michael S. Tsirkin" Date: Wed, 30 Sep 2009 19:44:11 +0200 Subject: [PATCH] twl92230: fix old style increment/decrement usage Modern compilers do not parse "=-" as decrement: you must use "-=" for that. Same for "=+"/"+=". Signed-off-by: Michael S. Tsirkin Signed-off-by: Blue Swirl --- hw/twl92230.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/twl92230.c b/hw/twl92230.c index b15a8bf95c..68fab884a7 100644 --- a/hw/twl92230.c +++ b/hw/twl92230.c @@ -73,14 +73,14 @@ static inline void menelaus_update(MenelausState *s) static inline void menelaus_rtc_start(MenelausState *s) { - s->rtc.next =+ qemu_get_clock(rt_clock); + s->rtc.next += qemu_get_clock(rt_clock); qemu_mod_timer(s->rtc.hz_tm, s->rtc.next); } static inline void menelaus_rtc_stop(MenelausState *s) { qemu_del_timer(s->rtc.hz_tm); - s->rtc.next =- qemu_get_clock(rt_clock); + s->rtc.next -= qemu_get_clock(rt_clock); if (s->rtc.next < 1) s->rtc.next = 1; }