Lines Matching defs:this_opt
269 char *this_opt;
272 while ((this_opt = strsep(&options, ",")) != NULL) {
273 if (!*this_opt) continue;
275 efifb_setup_from_dmi(&screen_info, this_opt);
277 if (!strncmp(this_opt, "base:", 5))
278 screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0);
279 else if (!strncmp(this_opt, "stride:", 7))
280 screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4;
281 else if (!strncmp(this_opt, "height:", 7))
282 screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0);
283 else if (!strncmp(this_opt, "width:", 6))
284 screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0);
285 else if (!strcmp(this_opt, "nowc"))
287 else if (!strcmp(this_opt, "nobgrt"))