Lines Matching refs:this_opt
3842 char *this_opt; in atyfb_setup() local
3847 while ((this_opt = strsep(&options, ",")) != NULL) { in atyfb_setup()
3848 if (!strncmp(this_opt, "noaccel", 7)) { in atyfb_setup()
3851 } else if (!strncmp(this_opt, "nomtrr", 6)) { in atyfb_setup()
3854 } else if (!strncmp(this_opt, "vram:", 5)) in atyfb_setup()
3855 vram = simple_strtoul(this_opt + 5, NULL, 0); in atyfb_setup()
3856 else if (!strncmp(this_opt, "pll:", 4)) in atyfb_setup()
3857 pll = simple_strtoul(this_opt + 4, NULL, 0); in atyfb_setup()
3858 else if (!strncmp(this_opt, "mclk:", 5)) in atyfb_setup()
3859 mclk = simple_strtoul(this_opt + 5, NULL, 0); in atyfb_setup()
3860 else if (!strncmp(this_opt, "xclk:", 5)) in atyfb_setup()
3861 xclk = simple_strtoul(this_opt+5, NULL, 0); in atyfb_setup()
3862 else if (!strncmp(this_opt, "comp_sync:", 10)) in atyfb_setup()
3863 comp_sync = simple_strtoul(this_opt+10, NULL, 0); in atyfb_setup()
3864 else if (!strncmp(this_opt, "backlight:", 10)) in atyfb_setup()
3865 backlight = simple_strtoul(this_opt+10, NULL, 0); in atyfb_setup()
3867 else if (!strncmp(this_opt, "vmode:", 6)) { in atyfb_setup()
3869 simple_strtoul(this_opt + 6, NULL, 0); in atyfb_setup()
3872 } else if (!strncmp(this_opt, "cmode:", 6)) { in atyfb_setup()
3874 simple_strtoul(this_opt + 6, NULL, 0); in atyfb_setup()
3897 && (!strncmp(this_opt, "Mach64:", 7))) { in atyfb_setup()
3900 strlcpy(mach64_str, this_opt + 7, sizeof(mach64_str)); in atyfb_setup()
3908 mode = this_opt; in atyfb_setup()