]> Git Repo - qemu.git/commitdiff
The only 64bit parameter of muldiv64() is the first one.
authorLaurent Vivier <[email protected]>
Mon, 9 May 2016 13:24:56 +0000 (15:24 +0200)
committerMichael Tokarev <[email protected]>
Tue, 7 Jun 2016 15:02:49 +0000 (18:02 +0300)
muldiv64() is "uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)"

Some time it is used as muldiv64(uint32_t a, uint64_t b, uint32_t c)"

This patch is the result of coccinelle script
scripts/coccinelle/swap_muldiv64.cocci to reorder arguments.

Signed-off-by: Laurent Vivier <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
hw/timer/omap_gptimer.c
hw/usb/hcd-ohci.c

index 3a438630424a3cb334133a5ae89a2ea4e27066c2..5e3e8a6d70b02b3f6159a00cd435b741a4dcc233 100644 (file)
@@ -133,8 +133,8 @@ static inline void omap_gp_timer_update(struct omap_gp_timer_s *timer)
         timer_mod(timer->timer, timer->time + expires);
 
         if (timer->ce && timer->match_val >= timer->val) {
-            matches = muldiv64(timer->match_val - timer->val,
-                            timer->ticks_per_sec, timer->rate);
+            matches = muldiv64(timer->ticks_per_sec,
+                               timer->match_val - timer->val, timer->rate);
             timer_mod(timer->match, timer->time + matches);
         } else
             timer_del(timer->match);
index 16d9ff7b4b267040123cf6e205ee54470f1c8242..25cc53fd6dddf77757af584d9e1176dca767c393 100644 (file)
@@ -1474,7 +1474,7 @@ static uint32_t ohci_get_frame_remaining(OHCIState *ohci)
     if (tks >= usb_frame_time)
         return (ohci->frt << 31);
 
-    tks = muldiv64(1, tks, usb_bit_time);
+    tks = muldiv64(tks, 1, usb_bit_time);
     fr = (uint16_t)(ohci->fi - tks);
 
     return (ohci->frt << 31) | fr;
This page took 0.029511 seconds and 4 git commands to generate.