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 42cbb44891
commit 3f78ba191e
4 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ extern uint8_t ld_entry_end;
extern const uint8_t ld_trampoline_load;
extern uint8_t ld_trampoline_start;
extern uint8_t ld_trampoline_end;
extern uint8_t _ld_ram_start;
extern uint8_t _ld_ram_end;
extern uint8_t ld_ram_start;
extern uint8_t ld_ram_end;
#endif /* LD_SYM_H */