Lines Matching defs:this_opt
287 char *this_opt;
290 while ((this_opt = strsep(&options, ",")) != NULL) {
291 if (!*this_opt) continue;
293 efifb_setup_from_dmi(&screen_info, this_opt);
295 if (!strncmp(this_opt, "base:", 5))
296 screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0);
297 else if (!strncmp(this_opt, "stride:", 7))
298 screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4;
299 else if (!strncmp(this_opt, "height:", 7))
300 screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0);
301 else if (!strncmp(this_opt, "width:", 6))
302 screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0);
303 else if (!strcmp(this_opt, "nowc"))
305 else if (!strcmp(this_opt, "nobgrt"))