Lines Matching refs:this_opt
3837 char *this_opt; in atyfb_setup() local
3842 while ((this_opt = strsep(&options, ",")) != NULL) { in atyfb_setup()
3843 if (!strncmp(this_opt, "noaccel", 7)) { in atyfb_setup()
3845 } else if (!strncmp(this_opt, "nomtrr", 6)) { in atyfb_setup()
3847 } else if (!strncmp(this_opt, "vram:", 5)) in atyfb_setup()
3848 vram = simple_strtoul(this_opt + 5, NULL, 0); in atyfb_setup()
3849 else if (!strncmp(this_opt, "pll:", 4)) in atyfb_setup()
3850 pll = simple_strtoul(this_opt + 4, NULL, 0); in atyfb_setup()
3851 else if (!strncmp(this_opt, "mclk:", 5)) in atyfb_setup()
3852 mclk = simple_strtoul(this_opt + 5, NULL, 0); in atyfb_setup()
3853 else if (!strncmp(this_opt, "xclk:", 5)) in atyfb_setup()
3854 xclk = simple_strtoul(this_opt+5, NULL, 0); in atyfb_setup()
3855 else if (!strncmp(this_opt, "comp_sync:", 10)) in atyfb_setup()
3856 comp_sync = simple_strtoul(this_opt+10, NULL, 0); in atyfb_setup()
3857 else if (!strncmp(this_opt, "backlight:", 10)) in atyfb_setup()
3858 backlight = simple_strtoul(this_opt+10, NULL, 0); in atyfb_setup()
3860 else if (!strncmp(this_opt, "vmode:", 6)) { in atyfb_setup()
3862 simple_strtoul(this_opt + 6, NULL, 0); in atyfb_setup()
3865 } else if (!strncmp(this_opt, "cmode:", 6)) { in atyfb_setup()
3867 simple_strtoul(this_opt + 6, NULL, 0); in atyfb_setup()
3890 && (!strncmp(this_opt, "Mach64:", 7))) { in atyfb_setup()
3893 strlcpy(mach64_str, this_opt + 7, sizeof(mach64_str)); in atyfb_setup()
3901 mode = this_opt; in atyfb_setup()