limine: Fix definition of limine_goto_address type

This commit is contained in:
mintsuki 2022-03-26 14:24:08 +01:00
parent 8b2cafc875
commit 88a2cc6cd8
2 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ Notes: The presence of this request will prompt the bootloader to bootstrap
the secondary processors. This will not be done if this request is not present.
```c
typedef void (*limine_goto_address)(void);
typedef void (*limine_goto_address)(struct limine_smp_info *);
struct limine_smp_info {
uint32_t processor_id;

View File

@ -143,7 +143,7 @@ struct limine_5_level_paging_request {
#define LIMINE_SMP_X2APIC (1 << 0)
typedef void (*limine_goto_address)(void);
typedef void (*limine_goto_address)(struct limine_smp_info *);
struct limine_smp_info {
uint32_t processor_id;