acrn-hypervisor/hypervisor/boot
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
..
include HV: treewide: enforce unsignedness of pcpu_id 2018-06-21 16:59:21 +08:00
sbl hv:fix "missing for discarded return value" for memset 2018-07-05 14:14:48 +08:00
acpi.c HV:misc:add suffix U to the numeric constant 2018-07-05 11:29:46 +08:00
dmar_parse.c Revert "hv: More changes to enable GPU passthru" 2018-07-05 11:06:47 +08:00