From: Mohd Kashif Khan Date: Mon, 26 Jan 2026 21:09:10 +0000 (+0530) Subject: rust/hpet: remove stale TODO comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df8dfc3b6080713c2dbd7ef37c2c85a78e502cd6;p=thirdparty%2Fqemu.git rust/hpet: remove stale TODO comment The irq binding is already implemented in the following line, so the TODO comment is obsolete. Signed-off-by: Mohd Kashif Khan Reviewed-by: Zhao Liu Link: https://lore.kernel.org/r/20260126210910.28889-1-kashif04x@gmail.com Signed-off-by: Paolo Bonzini --- diff --git a/rust/hw/timer/hpet/src/device.rs b/rust/hw/timer/hpet/src/device.rs index 4757bf5fd5..ebf715d399 100644 --- a/rust/hw/timer/hpet/src/device.rs +++ b/rust/hw/timer/hpet/src/device.rs @@ -725,7 +725,6 @@ impl HPETState { self.irqs[0].lower(); self.irqs[RTC_ISA_IRQ].lower(); } else if deactivating_bit(old_val, new_val, HPET_CFG_LEG_RT_SHIFT) { - // TODO: Add irq binding: qemu_irq_lower(s->irqs[0]) self.irqs[0].lower(); self.pit_enabled.set(true); self.irqs[RTC_ISA_IRQ].set(self.rtc_irq_level.get() != 0);