• Home
  • Raw
  • Download

Lines Matching refs:this_opt

1962 	char *this_opt, *suffix = NULL;  in i810fb_setup()  local
1967 while ((this_opt = strsep(&options, ",")) != NULL) { in i810fb_setup()
1968 if (!strncmp(this_opt, "mtrr", 4)) in i810fb_setup()
1970 else if (!strncmp(this_opt, "accel", 5)) in i810fb_setup()
1972 else if (!strncmp(this_opt, "extvga", 6)) in i810fb_setup()
1974 else if (!strncmp(this_opt, "sync", 4)) in i810fb_setup()
1976 else if (!strncmp(this_opt, "vram:", 5)) in i810fb_setup()
1977 vram = (simple_strtoul(this_opt+5, NULL, 0)); in i810fb_setup()
1978 else if (!strncmp(this_opt, "voffset:", 8)) in i810fb_setup()
1979 voffset = (simple_strtoul(this_opt+8, NULL, 0)); in i810fb_setup()
1980 else if (!strncmp(this_opt, "xres:", 5)) in i810fb_setup()
1981 xres = simple_strtoul(this_opt+5, NULL, 0); in i810fb_setup()
1982 else if (!strncmp(this_opt, "yres:", 5)) in i810fb_setup()
1983 yres = simple_strtoul(this_opt+5, NULL, 0); in i810fb_setup()
1984 else if (!strncmp(this_opt, "vyres:", 6)) in i810fb_setup()
1985 vyres = simple_strtoul(this_opt+6, NULL, 0); in i810fb_setup()
1986 else if (!strncmp(this_opt, "bpp:", 4)) in i810fb_setup()
1987 bpp = simple_strtoul(this_opt+4, NULL, 0); in i810fb_setup()
1988 else if (!strncmp(this_opt, "hsync1:", 7)) { in i810fb_setup()
1989 hsync1 = simple_strtoul(this_opt+7, &suffix, 0); in i810fb_setup()
1992 } else if (!strncmp(this_opt, "hsync2:", 7)) { in i810fb_setup()
1993 hsync2 = simple_strtoul(this_opt+7, &suffix, 0); in i810fb_setup()
1996 } else if (!strncmp(this_opt, "vsync1:", 7)) in i810fb_setup()
1997 vsync1 = simple_strtoul(this_opt+7, NULL, 0); in i810fb_setup()
1998 else if (!strncmp(this_opt, "vsync2:", 7)) in i810fb_setup()
1999 vsync2 = simple_strtoul(this_opt+7, NULL, 0); in i810fb_setup()
2000 else if (!strncmp(this_opt, "dcolor", 6)) in i810fb_setup()
2002 else if (!strncmp(this_opt, "ddc3", 4)) in i810fb_setup()
2005 mode_option = this_opt; in i810fb_setup()