Lines Matching defs:vmode
786 || (var->vmode & FB_VMODE_MASK) != FB_VMODE_NONINTERLACED)
851 var->vmode = FB_VMODE_NONINTERLACED;
1393 int vmode = init_vmode, cmode = init_cmode;
1395 if (vmode == -1) {
1396 vmode = nvram_read_byte(NV_VMODE);
1397 if (vmode <= 0 || vmode > VMODE_MAX)
1398 vmode = VMODE_640_480_67;
1405 if (mac_vmode_to_var(vmode, cmode, &info->var)) {
1586 else if (!strncmp(this_opt, "vmode:", 6)) {
1587 int vmode = simple_strtoul(this_opt+6, NULL, 0);
1588 if (vmode > 0 && vmode <= VMODE_MAX)
1589 init_vmode = vmode;