• Home
  • Raw
  • Download

Lines Matching refs:this_opt

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