Lines Matching refs:this_opt
87 char *this_opt; in efifb_setup() local
91 while ((this_opt = strsep(&options, ",")) != NULL) { in efifb_setup()
92 if (!*this_opt) continue; in efifb_setup()
96 !strcmp(this_opt, efifb_dmi_list[i].optname)) { in efifb_setup()
103 if (!strncmp(this_opt, "base:", 5)) in efifb_setup()
104 screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0); in efifb_setup()
105 else if (!strncmp(this_opt, "stride:", 7)) in efifb_setup()
106 screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4; in efifb_setup()
107 else if (!strncmp(this_opt, "height:", 7)) in efifb_setup()
108 screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0); in efifb_setup()
109 else if (!strncmp(this_opt, "width:", 6)) in efifb_setup()
110 screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0); in efifb_setup()