acrn-hypervisor/hypervisor/boot/sbl
Mingqiang Chi 666430a3d4 hv:fix "missing for discarded return value" for memset
No need to check the return value for memset
code like this:
int a(void) {
	return 0;
}
int b(void){
	a();
}
fix as follow:
int a(void) {
	return 0;
}
int b(void){
	(void)a();
}

Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
2018-07-05 14:14:48 +08:00
..
hob_parse.c hv:fix "missing for discarded return value" for memset 2018-07-05 14:14:48 +08:00
multiboot.c HV: Remove unnecessary vm0 check in vm0 specific func 2018-07-02 15:07:55 +08:00