diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-05 21:45:44 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-05 21:45:44 -0500 |
commit | 0707815822121996af1968ef5622a0f957108587 (patch) | |
tree | 1224bed901cd1f42c7035128e20ff5cfa0596dcd /sys/arch | |
parent | 2efd4670416be5bcc64782745b745d2183c8ca11 (diff) |
kernel/amd64: lapic: Conform to style
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/lapic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/lapic.c b/sys/arch/amd64/amd64/lapic.c index bd3822e..c5760f5 100644 --- a/sys/arch/amd64/amd64/lapic.c +++ b/sys/arch/amd64/amd64/lapic.c @@ -269,7 +269,8 @@ lapic_timer_oneshot_us(uint32_t us) * @shorthand: Dest shorthand * @vector: Interrupt vector */ -void lapic_send_ipi(uint8_t id, uint8_t shorthand, uint8_t vector) +void +lapic_send_ipi(uint8_t id, uint8_t shorthand, uint8_t vector) { const uint32_t x2APIC_IPI_SELF = 0x3F0; uint8_t icr_lo = vector | IPI_DEST_PHYSICAL; |