Lines Matching refs:this_opt
1808 char *this_opt; in uvesafb_setup() local
1813 while ((this_opt = strsep(&options, ",")) != NULL) { in uvesafb_setup()
1814 if (!*this_opt) continue; in uvesafb_setup()
1816 if (!strcmp(this_opt, "redraw")) in uvesafb_setup()
1818 else if (!strcmp(this_opt, "ypan")) in uvesafb_setup()
1820 else if (!strcmp(this_opt, "ywrap")) in uvesafb_setup()
1822 else if (!strcmp(this_opt, "vgapal")) in uvesafb_setup()
1824 else if (!strcmp(this_opt, "pmipal")) in uvesafb_setup()
1826 else if (!strncmp(this_opt, "mtrr:", 5)) in uvesafb_setup()
1827 mtrr = simple_strtoul(this_opt+5, NULL, 0); in uvesafb_setup()
1828 else if (!strcmp(this_opt, "nomtrr")) in uvesafb_setup()
1830 else if (!strcmp(this_opt, "nocrtc")) in uvesafb_setup()
1832 else if (!strcmp(this_opt, "noedid")) in uvesafb_setup()
1834 else if (!strcmp(this_opt, "noblank")) in uvesafb_setup()
1836 else if (!strncmp(this_opt, "vtotal:", 7)) in uvesafb_setup()
1837 vram_total = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1838 else if (!strncmp(this_opt, "vremap:", 7)) in uvesafb_setup()
1839 vram_remap = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1840 else if (!strncmp(this_opt, "maxhf:", 6)) in uvesafb_setup()
1841 maxhf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1842 else if (!strncmp(this_opt, "maxvf:", 6)) in uvesafb_setup()
1843 maxvf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1844 else if (!strncmp(this_opt, "maxclk:", 7)) in uvesafb_setup()
1845 maxclk = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1846 else if (!strncmp(this_opt, "vbemode:", 8)) in uvesafb_setup()
1847 vbemode = simple_strtoul(this_opt + 8, NULL, 0); in uvesafb_setup()
1848 else if (this_opt[0] >= '0' && this_opt[0] <= '9') { in uvesafb_setup()
1849 mode_option = this_opt; in uvesafb_setup()
1851 pr_warn("unrecognized option %s\n", this_opt); in uvesafb_setup()