mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
Kernel: Fix IRQ define in PS2MouseDevice
This commit is contained in:
parent
1525c11928
commit
1bb98c6950
Notes:
sideshowbarker
2024-07-19 10:20:49 +09:00
Author: https://github.com/xTibor
Commit: 1bb98c6950
Pull-request: https://github.com/SerenityOS/serenity/pull/1020
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "PS2MouseDevice.h"
|
||||
#include "IO.h"
|
||||
|
||||
#define IRQ_MOUSE 1
|
||||
#define IRQ_MOUSE 12
|
||||
#define I8042_BUFFER 0x60
|
||||
#define I8042_STATUS 0x64
|
||||
#define I8042_ACK 0xFA
|
||||
|
@ -28,7 +28,7 @@
|
|||
static PS2MouseDevice* s_the;
|
||||
|
||||
PS2MouseDevice::PS2MouseDevice()
|
||||
: IRQHandler(12)
|
||||
: IRQHandler(IRQ_MOUSE)
|
||||
, CharacterDevice(10, 1)
|
||||
{
|
||||
s_the = this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue