Lines Matching refs:this_opt
1811 char *this_opt; in uvesafb_setup() local
1816 while ((this_opt = strsep(&options, ",")) != NULL) { in uvesafb_setup()
1817 if (!*this_opt) continue; in uvesafb_setup()
1819 if (!strcmp(this_opt, "redraw")) in uvesafb_setup()
1821 else if (!strcmp(this_opt, "ypan")) in uvesafb_setup()
1823 else if (!strcmp(this_opt, "ywrap")) in uvesafb_setup()
1825 else if (!strcmp(this_opt, "vgapal")) in uvesafb_setup()
1827 else if (!strcmp(this_opt, "pmipal")) in uvesafb_setup()
1829 else if (!strncmp(this_opt, "mtrr:", 5)) in uvesafb_setup()
1830 mtrr = simple_strtoul(this_opt+5, NULL, 0); in uvesafb_setup()
1831 else if (!strcmp(this_opt, "nomtrr")) in uvesafb_setup()
1833 else if (!strcmp(this_opt, "nocrtc")) in uvesafb_setup()
1835 else if (!strcmp(this_opt, "noedid")) in uvesafb_setup()
1837 else if (!strcmp(this_opt, "noblank")) in uvesafb_setup()
1839 else if (!strncmp(this_opt, "vtotal:", 7)) in uvesafb_setup()
1840 vram_total = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1841 else if (!strncmp(this_opt, "vremap:", 7)) in uvesafb_setup()
1842 vram_remap = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1843 else if (!strncmp(this_opt, "maxhf:", 6)) in uvesafb_setup()
1844 maxhf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1845 else if (!strncmp(this_opt, "maxvf:", 6)) in uvesafb_setup()
1846 maxvf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1847 else if (!strncmp(this_opt, "maxclk:", 7)) in uvesafb_setup()
1848 maxclk = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1849 else if (!strncmp(this_opt, "vbemode:", 8)) in uvesafb_setup()
1850 vbemode = simple_strtoul(this_opt + 8, NULL, 0); in uvesafb_setup()
1851 else if (this_opt[0] >= '0' && this_opt[0] <= '9') { in uvesafb_setup()
1852 mode_option = this_opt; in uvesafb_setup()
1854 pr_warn("unrecognized option %s\n", this_opt); in uvesafb_setup()