Lines Matching refs:this_opt
1831 char *this_opt; in uvesafb_setup() local
1836 while ((this_opt = strsep(&options, ",")) != NULL) { in uvesafb_setup()
1837 if (!*this_opt) continue; in uvesafb_setup()
1839 if (!strcmp(this_opt, "redraw")) in uvesafb_setup()
1841 else if (!strcmp(this_opt, "ypan")) in uvesafb_setup()
1843 else if (!strcmp(this_opt, "ywrap")) in uvesafb_setup()
1845 else if (!strcmp(this_opt, "vgapal")) in uvesafb_setup()
1847 else if (!strcmp(this_opt, "pmipal")) in uvesafb_setup()
1849 else if (!strncmp(this_opt, "mtrr:", 5)) in uvesafb_setup()
1850 mtrr = simple_strtoul(this_opt+5, NULL, 0); in uvesafb_setup()
1851 else if (!strcmp(this_opt, "nomtrr")) in uvesafb_setup()
1853 else if (!strcmp(this_opt, "nocrtc")) in uvesafb_setup()
1855 else if (!strcmp(this_opt, "noedid")) in uvesafb_setup()
1857 else if (!strcmp(this_opt, "noblank")) in uvesafb_setup()
1859 else if (!strncmp(this_opt, "vtotal:", 7)) in uvesafb_setup()
1860 vram_total = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1861 else if (!strncmp(this_opt, "vremap:", 7)) in uvesafb_setup()
1862 vram_remap = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1863 else if (!strncmp(this_opt, "maxhf:", 6)) in uvesafb_setup()
1864 maxhf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1865 else if (!strncmp(this_opt, "maxvf:", 6)) in uvesafb_setup()
1866 maxvf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1867 else if (!strncmp(this_opt, "maxclk:", 7)) in uvesafb_setup()
1868 maxclk = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1869 else if (!strncmp(this_opt, "vbemode:", 8)) in uvesafb_setup()
1870 vbemode = simple_strtoul(this_opt + 8, NULL, 0); in uvesafb_setup()
1871 else if (this_opt[0] >= '0' && this_opt[0] <= '9') { in uvesafb_setup()
1872 mode_option = this_opt; in uvesafb_setup()
1875 "uvesafb: unrecognized option %s\n", this_opt); in uvesafb_setup()