From 3610dd7e037e3daea71524ca140d400e342ff144 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:27:55 +0100 Subject: [PATCH] Remove unused interrupt handler --- src/arch/x86/interrupt/irq.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/arch/x86/interrupt/irq.rs b/src/arch/x86/interrupt/irq.rs index 4531ba3db0..a22eda3220 100644 --- a/src/arch/x86/interrupt/irq.rs +++ b/src/arch/x86/interrupt/irq.rs @@ -284,13 +284,6 @@ interrupt!(lapic_error, || { lapic_eoi(); }); -interrupt!(calib_pit, || { - { - *time::OFFSET.lock() += pit::RATE; - } - - eoi(0); -}); // XXX: This would look way prettier using const generics. macro_rules! allocatable_irq(