Lines Matching refs:this_opt
1965 char *this_opt, *suffix = NULL; in i810fb_setup() local
1970 while ((this_opt = strsep(&options, ",")) != NULL) { in i810fb_setup()
1971 if (!strncmp(this_opt, "mtrr", 4)) in i810fb_setup()
1973 else if (!strncmp(this_opt, "accel", 5)) in i810fb_setup()
1975 else if (!strncmp(this_opt, "extvga", 6)) in i810fb_setup()
1977 else if (!strncmp(this_opt, "sync", 4)) in i810fb_setup()
1979 else if (!strncmp(this_opt, "vram:", 5)) in i810fb_setup()
1980 vram = (simple_strtoul(this_opt+5, NULL, 0)); in i810fb_setup()
1981 else if (!strncmp(this_opt, "voffset:", 8)) in i810fb_setup()
1982 voffset = (simple_strtoul(this_opt+8, NULL, 0)); in i810fb_setup()
1983 else if (!strncmp(this_opt, "xres:", 5)) in i810fb_setup()
1984 xres = simple_strtoul(this_opt+5, NULL, 0); in i810fb_setup()
1985 else if (!strncmp(this_opt, "yres:", 5)) in i810fb_setup()
1986 yres = simple_strtoul(this_opt+5, NULL, 0); in i810fb_setup()
1987 else if (!strncmp(this_opt, "vyres:", 6)) in i810fb_setup()
1988 vyres = simple_strtoul(this_opt+6, NULL, 0); in i810fb_setup()
1989 else if (!strncmp(this_opt, "bpp:", 4)) in i810fb_setup()
1990 bpp = simple_strtoul(this_opt+4, NULL, 0); in i810fb_setup()
1991 else if (!strncmp(this_opt, "hsync1:", 7)) { in i810fb_setup()
1992 hsync1 = simple_strtoul(this_opt+7, &suffix, 0); in i810fb_setup()
1995 } else if (!strncmp(this_opt, "hsync2:", 7)) { in i810fb_setup()
1996 hsync2 = simple_strtoul(this_opt+7, &suffix, 0); in i810fb_setup()
1999 } else if (!strncmp(this_opt, "vsync1:", 7)) in i810fb_setup()
2000 vsync1 = simple_strtoul(this_opt+7, NULL, 0); in i810fb_setup()
2001 else if (!strncmp(this_opt, "vsync2:", 7)) in i810fb_setup()
2002 vsync2 = simple_strtoul(this_opt+7, NULL, 0); in i810fb_setup()
2003 else if (!strncmp(this_opt, "dcolor", 6)) in i810fb_setup()
2005 else if (!strncmp(this_opt, "ddc3", 4)) in i810fb_setup()
2008 mode_option = this_opt; in i810fb_setup()