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:
Victor Sun
2021-11-24 11:07:50 +08:00
committed by wenlingz
parent e718f48a55
commit e4a58363e3
4 changed files with 7 additions and 7 deletions

View File

@@ -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 = . ;
}