Lines Matching refs:this_opt
281 char *this_opt; in efifb_setup() local
284 while ((this_opt = strsep(&options, ",")) != NULL) { in efifb_setup()
285 if (!*this_opt) continue; in efifb_setup()
287 efifb_setup_from_dmi(&screen_info, this_opt); in efifb_setup()
289 if (!strncmp(this_opt, "base:", 5)) in efifb_setup()
290 screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0); in efifb_setup()
291 else if (!strncmp(this_opt, "stride:", 7)) in efifb_setup()
292 screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4; in efifb_setup()
293 else if (!strncmp(this_opt, "height:", 7)) in efifb_setup()
294 screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0); in efifb_setup()
295 else if (!strncmp(this_opt, "width:", 6)) in efifb_setup()
296 screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0); in efifb_setup()
297 else if (!strcmp(this_opt, "nowc")) in efifb_setup()
299 else if (!strcmp(this_opt, "nobgrt")) in efifb_setup()