Skip to content

Commit

Permalink
ps2: Fix accidental rename
Browse files Browse the repository at this point in the history
  • Loading branch information
marv7000 committed Nov 20, 2024
1 parent f440b6f commit c609fb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/arch/x86_64/ps2_keyboard/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static isize ps2_keyboard_read(Handle* handle, FileDescriptor* fd, void* data, u
return 1;
}

MODULE_FN i32 nvme_init()
MODULE_FN i32 ps2_init()
{
// Add this keyboard as a new input method.

Expand All @@ -111,4 +111,4 @@ MODULE_FN i32 nvme_init()
return 0;
}

MODULE_DEFAULT(nvme_init, NULL);
MODULE_DEFAULT(ps2_init, NULL);

0 comments on commit c609fb2

Please sign in to comment.