Correct ld variable type

They should be declared as char
This commit is contained in:
Mathieu Maret 2023-11-20 00:02:22 +01:00 committed by Mathieu Maret
parent 63757b1e0c
commit 6a00aa4762
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
// Defined in linker.ld script
extern uint32_t __ld_kernel_begin;
extern uint32_t __ld_kernel_end;
extern char __ld_kernel_begin;
extern char __ld_kernel_end;
struct phyMemDesc {
paddr_t phy_addr;