]> Git Repo - qemu.git/blobdiff - hw/timer/hpet.c
Switch non-CPU callers from ld/st*_phys to address_space_ld/st*
[qemu.git] / hw / timer / hpet.c
index 78d86be91c97fa817c2598d5d616862ec454bb7c..b6b8a2063da63ad052539db79d95a7ac707d197c 100644 (file)
@@ -206,8 +206,9 @@ static void update_irq(struct HPETTimer *timer, int set)
             }
         }
     } else if (timer_fsb_route(timer)) {
-        stl_le_phys(&address_space_memory,
-                    timer->fsb >> 32, timer->fsb & 0xffffffff);
+        address_space_stl_le(&address_space_memory, timer->fsb >> 32,
+                             timer->fsb & 0xffffffff, MEMTXATTRS_UNSPECIFIED,
+                             NULL);
     } else if (timer->config & HPET_TN_TYPE_LEVEL) {
         s->isr |= mask;
         /* fold the ICH PIRQ# pin's internal inversion logic into hpet */
This page took 0.022538 seconds and 4 git commands to generate.