Lines Matching refs:this_opt
1881 char *this_opt; in uvesafb_setup() local
1886 while ((this_opt = strsep(&options, ",")) != NULL) { in uvesafb_setup()
1887 if (!*this_opt) continue; in uvesafb_setup()
1889 if (!strcmp(this_opt, "redraw")) in uvesafb_setup()
1891 else if (!strcmp(this_opt, "ypan")) in uvesafb_setup()
1893 else if (!strcmp(this_opt, "ywrap")) in uvesafb_setup()
1895 else if (!strcmp(this_opt, "vgapal")) in uvesafb_setup()
1897 else if (!strcmp(this_opt, "pmipal")) in uvesafb_setup()
1899 else if (!strncmp(this_opt, "mtrr:", 5)) in uvesafb_setup()
1900 mtrr = simple_strtoul(this_opt+5, NULL, 0); in uvesafb_setup()
1901 else if (!strcmp(this_opt, "nomtrr")) in uvesafb_setup()
1903 else if (!strcmp(this_opt, "nocrtc")) in uvesafb_setup()
1905 else if (!strcmp(this_opt, "noedid")) in uvesafb_setup()
1907 else if (!strcmp(this_opt, "noblank")) in uvesafb_setup()
1909 else if (!strncmp(this_opt, "vtotal:", 7)) in uvesafb_setup()
1910 vram_total = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1911 else if (!strncmp(this_opt, "vremap:", 7)) in uvesafb_setup()
1912 vram_remap = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1913 else if (!strncmp(this_opt, "maxhf:", 6)) in uvesafb_setup()
1914 maxhf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1915 else if (!strncmp(this_opt, "maxvf:", 6)) in uvesafb_setup()
1916 maxvf = simple_strtoul(this_opt + 6, NULL, 0); in uvesafb_setup()
1917 else if (!strncmp(this_opt, "maxclk:", 7)) in uvesafb_setup()
1918 maxclk = simple_strtoul(this_opt + 7, NULL, 0); in uvesafb_setup()
1919 else if (!strncmp(this_opt, "vbemode:", 8)) in uvesafb_setup()
1920 vbemode = simple_strtoul(this_opt + 8, NULL, 0); in uvesafb_setup()
1921 else if (this_opt[0] >= '0' && this_opt[0] <= '9') { in uvesafb_setup()
1922 mode_option = this_opt; in uvesafb_setup()
1925 "uvesafb: unrecognized option %s\n", this_opt); in uvesafb_setup()