X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FModules%2FInput%2FPS2KbMouse%2F8042.c;h=f71fff7ffe263041a322f7266908aa5247bcd881;hb=d0b4559f2936f6d9f06be0f7c3c51527a480ec0d;hp=e11bc74f026ab2370d50e6ba3efe50cb5a14cdea;hpb=48743e39650eb1ef988380e9d95f27fd40d3a9ce;p=tpg%2Facess2.git diff --git a/KernelLand/Modules/Input/PS2KbMouse/8042.c b/KernelLand/Modules/Input/PS2KbMouse/8042.c index e11bc74f..f71fff7f 100644 --- a/KernelLand/Modules/Input/PS2KbMouse/8042.c +++ b/KernelLand/Modules/Input/PS2KbMouse/8042.c @@ -36,11 +36,7 @@ void KBC8042_Init(void) void KBC8042_KeyboardHandler(int IRQ, void *Ptr) { - Uint8 scancode; - -// Log("KBC8042_KeyboardHandler: (IRQ=%i, Ptr=%p)", IRQ, Ptr); - - scancode = inb(0x60); + Uint8 scancode = inb(0x60); KB_HandleScancode( scancode ); }