release: fix the compilation error in release mode
Commit `512c98fd7 hv: trace: show cpu usage of vms in pcpu sharing case` causes the compilation error in release mode: hypervisor/common/schedule.c:190: undefined reference to `TRACE_16STR' This patch fixes this issue. Tracked-On: #861 Signed-off-by: Gao, Shiqing <shiqing.gao@intel.com>
This commit is contained in:
parent
e4b1584577
commit
f398b9c29e
|
@ -17,3 +17,5 @@ void TRACE_6C(__unused uint32_t evid, __unused uint8_t a1, __unused uint8_t a2,
|
||||||
__unused uint8_t a3, __unused uint8_t a4, __unused uint8_t b1, __unused uint8_t b2)
|
__unused uint8_t a3, __unused uint8_t a4, __unused uint8_t b1, __unused uint8_t b2)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TRACE_16STR(__unused uint32_t evid, __unused const char name[]) {}
|
||||||
|
|
Loading…
Reference in New Issue