Skip to content
Snippets Groups Projects
Commit ed39d55d authored by Adrian Danis's avatar Adrian Danis
Browse files

trivial: style

parent 1aa902e2
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,8 @@ bool_t pic_is_irq_pending(void)
return irr != 0;
}
static uint16_t pic_get_isr(void) {
static uint16_t pic_get_isr(void)
{
out8(PIC1_BASE, 0x0b);
out8(PIC2_BASE, 0x0b);
return (((uint16_t)in8(PIC2_BASE)) << 8) | in8(PIC1_BASE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment