Home | History | Annotate | Download | only in mboot

Lines Matching defs:gi

53     struct vesa_general_info *gi;
65 gi = lmalloc(sizeof *gi);
66 if (!gi)
74 memset(gi, 0, sizeof *gi);
76 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
78 rm.edi.w[0] = OFFS(gi);
79 rm.es = SEG(gi);
84 if (gi->signature != VESA_MAGIC)
86 if (gi->version < 0x0102)
89 memcpy(&vesa_info.gi, gi, sizeof *gi);
93 mode_ptr = GET_PTR(gi->video_mode_ptr);
208 mbi->vbe_control_info = viaddr + offsetof(struct vesa_info, gi);
232 lfree(gi);