Commit f7dd8f52 authored by Tomi Valkeinen's avatar Tomi Valkeinen

drm/omap: fix wrong variable type

'r' is supposed to be int, not u16, so fix it.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 0faee62d
...@@ -102,7 +102,7 @@ static int hdmi_pll_enable(struct dss_pll *dsspll) ...@@ -102,7 +102,7 @@ static int hdmi_pll_enable(struct dss_pll *dsspll)
{ {
struct hdmi_pll_data *pll = container_of(dsspll, struct hdmi_pll_data, pll); struct hdmi_pll_data *pll = container_of(dsspll, struct hdmi_pll_data, pll);
struct hdmi_wp_data *wp = pll->wp; struct hdmi_wp_data *wp = pll->wp;
u16 r = 0; int r;
dss_ctrl_pll_enable(DSS_PLL_HDMI, true); dss_ctrl_pll_enable(DSS_PLL_HDMI, true);
......
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