Home
last modified time | relevance | path

Searched refs:vminfo (Results 1 – 2 of 2) sorted by relevance

/linux/arch/x86/boot/
H A Dvideo-vesa.c21 static struct vesa_mode_info vminfo; variable
63 memset(&vminfo, 0, sizeof(vminfo)); /* Just in case... */ in vesa_probe()
67 ireg.di = (size_t)&vminfo; in vesa_probe()
73 if ((vminfo.mode_attr & 0x15) == 0x05) { in vesa_probe()
79 mi->x = vminfo.h_res; in vesa_probe()
80 mi->y = vminfo.v_res; in vesa_probe()
82 } else if ((vminfo.mode_attr & 0x99) == 0x99 && in vesa_probe()
83 (vminfo.memory_layout == 4 || in vesa_probe()
84 vminfo.memory_layout == 6) && in vesa_probe()
85 vminfo.memory_planes == 1) { in vesa_probe()
[all …]
/linux/drivers/virt/acrn/
H A Dhypercall.h69 static inline long hcall_create_vm(u64 vminfo) in hcall_create_vm() argument
71 return acrn_hypercall1(HC_CREATE_VM, vminfo); in hcall_create_vm()