Lines Matching defs:vmode
787 || (var->vmode & FB_VMODE_MASK) != FB_VMODE_NONINTERLACED)
852 var->vmode = FB_VMODE_NONINTERLACED;
1394 int vmode = init_vmode, cmode = init_cmode;
1396 if (vmode == -1) {
1397 vmode = nvram_read_byte(NV_VMODE);
1398 if (vmode <= 0 || vmode > VMODE_MAX)
1399 vmode = VMODE_640_480_67;
1406 if (mac_vmode_to_var(vmode, cmode, &info->var)) {
1591 else if (!strncmp(this_opt, "vmode:", 6)) {
1592 int vmode = simple_strtoul(this_opt+6, NULL, 0);
1593 if (vmode > 0 && vmode <= VMODE_MAX)
1594 init_vmode = vmode;