diff options
| author | Tianhao Wang <wth@riseup.net> | 2024-02-25 05:15:35 +0100 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:13:39 +0200 |
| commit | 70f9c89c64caa9f3e06c3c18a35157ce89f16162 (patch) | |
| tree | a3550efb606c55266d8969bcc40fcd472387f44f /src/arch/x86_64/interrupt | |
| parent | 8f3056df6945674f558073191b8f351f98d0b44a (diff) | |
chore: make clippy happy
Diffstat (limited to 'src/arch/x86_64/interrupt')
| -rw-r--r-- | src/arch/x86_64/interrupt/pic_8259.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86_64/interrupt/pic_8259.rs b/src/arch/x86_64/interrupt/pic_8259.rs index 43a102c..894697c 100644 --- a/src/arch/x86_64/interrupt/pic_8259.rs +++ b/src/arch/x86_64/interrupt/pic_8259.rs @@ -38,9 +38,9 @@ pub fn forbid(interrupt: u8) { pub fn is_masked(interrupt: u8) -> bool { if interrupt < 8 { let val = inb(IMR1); - return val & (interrupt) != 0; + val & (interrupt) != 0 } else { let val = inb(IMR2); - return val & (interrupt - 8) != 0; + val & (interrupt - 8) != 0 } } |
