From bb57b124d1bb385d41747f50be7dd4f3625539c1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 24 Nov 2019 23:34:32 +0100 Subject: Major coding style reformatting -> Kernighan & Ritchie This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel --- src/kernel/input/ps2/keyboard.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/kernel/input/ps2/keyboard.c') diff --git a/src/kernel/input/ps2/keyboard.c b/src/kernel/input/ps2/keyboard.c index 2a093e5..24802bd 100644 --- a/src/kernel/input/ps2/keyboard.c +++ b/src/kernel/input/ps2/keyboard.c @@ -64,12 +64,13 @@ char shift_keymap[128] = { 0, // Other keys }; -void keyboard_handler(struct regs *r) { +void keyboard_handler(struct regs *r) +{ unsigned char scan_code; char *current_keymap = keymap; if (shift_pressed) current_keymap = shift_keymap; - scan_code = receive_b(0x60); + scan_code = inb(0x60); if ((scan_code & 0x80) == 0) { // PRESS // TODO: Fix caps lock deactivation when pressing shift while shifted @@ -87,18 +88,21 @@ void keyboard_handler(struct regs *r) { } } -void keyboard_acknowledge() { - while (receive_b(0x60) != 0xfa); +void keyboard_acknowledge() +{ + while (inb(0x60) != 0xfa); } -void keyboard_rate() { - send_b(0x60, 0xF3); +void keyboard_rate() +{ + outb(0x60, 0xF3); keyboard_acknowledge(); - send_b(0x60, 0x0); // Rate{00000} Delay{00} 0 + outb(0x60, 0x0); // Rate{00000} Delay{00} 0 } // Installs the keyboard handler into IRQ1 -void keyboard_install() { +void keyboard_install() +{ keyboard_rate(); irq_install_handler(1, keyboard_handler); shift_pressed = 0; -- cgit v1.2.3