board rk2928:add delay after lcd power io control

This commit is contained in:
yxj
2012-11-14 18:43:41 +08:00
parent 69814e9f25
commit 406b57ed27

View File

@@ -217,6 +217,7 @@ static int rk_fb_io_disable(void)
}
#endif
gpio_set_value(LCD_EN, !LCD_EN_VALUE);
msleep(50);
return 0;
}
static int rk_fb_io_enable(void)
@@ -234,6 +235,7 @@ static int rk_fb_io_enable(void)
#endif
gpio_set_value(LCD_EN, LCD_EN_VALUE);
msleep(50);
return 0;
}