Lines Matching defs:this_opt
280 char *this_opt;
283 while ((this_opt = strsep(&options, ",")) != NULL) {
284 if (!*this_opt) continue;
286 efifb_setup_from_dmi(si, this_opt);
288 if (!strncmp(this_opt, "base:", 5))
289 si->lfb_base = simple_strtoul(this_opt+5, NULL, 0);
290 else if (!strncmp(this_opt, "stride:", 7))
291 si->lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4;
292 else if (!strncmp(this_opt, "height:", 7))
293 si->lfb_height = simple_strtoul(this_opt+7, NULL, 0);
294 else if (!strncmp(this_opt, "width:", 6))
295 si->lfb_width = simple_strtoul(this_opt+6, NULL, 0);
296 else if (!strcmp(this_opt, "nowc"))
298 else if (!strcmp(this_opt, "nobgrt"))