mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-10-11 23:48:07 +00:00
HV: Rename functions beginning with "_"
V1: In order to remove MISRA C violations for rule 219S, rename functions, macros whose name starts with "_". Also removed some __mmio functions because they are duplicates and are not used anywhere. Renamed functions like __assert, to asm_assert, because they were only wrappers around asm calls. V2: Over and above the changes on V1, modified bitmap functions names to lock (corresponding to unlock) introduced in V1 Signed-off-by: Arindam Roy <arindam.roy@intel.com>
This commit is contained in:
@@ -8,11 +8,11 @@
|
||||
#define ASSERT_H
|
||||
|
||||
#ifdef HV_DEBUG
|
||||
void __assert(int32_t line, const char *file, const char *txt);
|
||||
void asm_assert(int32_t line, const char *file, const char *txt);
|
||||
|
||||
#define ASSERT(x, ...) \
|
||||
if (!(x)) {\
|
||||
__assert(__LINE__, __FILE__, "fatal error");\
|
||||
asm_assert(__LINE__, __FILE__, "fatal error");\
|
||||
}
|
||||
#else
|
||||
#define ASSERT(x, ...) do { } while(0)
|
||||
|
Reference in New Issue
Block a user