Lines Matching refs:this_opt
172 char *this_opt; in efifb_setup() local
178 while ((this_opt = strsep(&options, ",")) != NULL) { in efifb_setup()
179 if (!*this_opt) continue; in efifb_setup()
182 if (!strcmp(this_opt, dmi_list[i].optname) && in efifb_setup()
190 if (!strncmp(this_opt, "base:", 5)) in efifb_setup()
191 screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0); in efifb_setup()
192 else if (!strncmp(this_opt, "stride:", 7)) in efifb_setup()
193 screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4; in efifb_setup()
194 else if (!strncmp(this_opt, "height:", 7)) in efifb_setup()
195 screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0); in efifb_setup()
196 else if (!strncmp(this_opt, "width:", 6)) in efifb_setup()
197 screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0); in efifb_setup()