Commit 6d09dfe7 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Bartlomiej Zolnierkiewicz

video: fbdev: pxafb: Convert to use match_string() helper

The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent 598041f3
...@@ -2099,7 +2099,7 @@ static void pxafb_check_options(struct device *dev, struct pxafb_mach_info *inf) ...@@ -2099,7 +2099,7 @@ static void pxafb_check_options(struct device *dev, struct pxafb_mach_info *inf)
#if defined(CONFIG_OF) #if defined(CONFIG_OF)
static const char * const lcd_types[] = { static const char * const lcd_types[] = {
"unknown", "mono-stn", "mono-dstn", "color-stn", "color-dstn", "mono-stn", "mono-dstn", "color-stn", "color-dstn",
"color-tft", "smart-panel", NULL "color-tft", "smart-panel", NULL
}; };
...@@ -2115,12 +2115,10 @@ static int of_get_pxafb_display(struct device *dev, struct device_node *disp, ...@@ -2115,12 +2115,10 @@ static int of_get_pxafb_display(struct device *dev, struct device_node *disp,
if (ret) if (ret)
s = "color-tft"; s = "color-tft";
for (i = 0; lcd_types[i]; i++) i = match_string(lcd_types, -1, s);
if (!strcmp(s, lcd_types[i])) if (i < 0) {
break;
if (!i || !lcd_types[i]) {
dev_err(dev, "lcd-type %s is unknown\n", s); dev_err(dev, "lcd-type %s is unknown\n", s);
return -EINVAL; return i;
} }
info->lcd_conn |= LCD_CONN_TYPE(i); info->lcd_conn |= LCD_CONN_TYPE(i);
info->lcd_conn |= LCD_CONN_WIDTH(bus_width); info->lcd_conn |= LCD_CONN_WIDTH(bus_width);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment