mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-23 17:58:30 +00:00
HV: fix MISRA violation of _ld_ram_xxx
Variable should not have a prefix of '_' per MISRA C standard. The patch removes the prefix for _ld_ram_start and _ld_ram_end. Tracked-On: #6885 Signed-off-by: Victor Sun <victor.sun@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
@@ -13,7 +13,7 @@ SECTIONS
|
||||
{
|
||||
.boot :
|
||||
{
|
||||
_ld_ram_start = . ;
|
||||
ld_ram_start = . ;
|
||||
KEEP(*(multiboot_header)) ;
|
||||
} > ram
|
||||
|
||||
@@ -99,5 +99,5 @@ SECTIONS
|
||||
} > ram
|
||||
|
||||
. = ALIGN(0x200000) ;
|
||||
_ld_ram_end = . ;
|
||||
ld_ram_end = . ;
|
||||
}
|
||||
|
Reference in New Issue
Block a user