Lines Matching refs:this_opt
3045 char *this_opt; in atyfb_setup() local
3050 while ((this_opt = strsep(&options, ",")) != NULL) { in atyfb_setup()
3051 if (!strncmp(this_opt, "font:", 5)) { in atyfb_setup()
3055 p = this_opt + 5; in atyfb_setup()
3059 memcpy(fontname, this_opt + 5, i); in atyfb_setup()
3061 } else if (!strncmp(this_opt, "noblink", 7)) { in atyfb_setup()
3063 } else if (!strncmp(this_opt, "noaccel", 7)) { in atyfb_setup()
3065 } else if (!strncmp(this_opt, "vram:", 5)) in atyfb_setup()
3066 default_vram = simple_strtoul(this_opt+5, NULL, 0); in atyfb_setup()
3067 else if (!strncmp(this_opt, "pll:", 4)) in atyfb_setup()
3068 default_pll = simple_strtoul(this_opt+4, NULL, 0); in atyfb_setup()
3069 else if (!strncmp(this_opt, "mclk:", 5)) in atyfb_setup()
3070 default_mclk = simple_strtoul(this_opt+5, NULL, 0); in atyfb_setup()
3071 else if (!strncmp(this_opt, "xclk:", 5)) in atyfb_setup()
3072 default_xclk = simple_strtoul(this_opt+5, NULL, 0); in atyfb_setup()
3074 else if (!strncmp(this_opt, "vmode:", 6)) { in atyfb_setup()
3075 unsigned int vmode = simple_strtoul(this_opt+6, NULL, 0); in atyfb_setup()
3078 } else if (!strncmp(this_opt, "cmode:", 6)) { in atyfb_setup()
3079 unsigned int cmode = simple_strtoul(this_opt+6, NULL, 0); in atyfb_setup()
3101 else if (MACH_IS_ATARI && (!strncmp(this_opt, "Mach64:", 7))) { in atyfb_setup()
3104 strncpy(mach64_str, this_opt+7, 80); in atyfb_setup()
3112 mode_option = this_opt; in atyfb_setup()