summaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorTomi Valkeinen2013-03-07 10:21:45 +0100
committerTomi Valkeinen2013-04-03 14:19:16 +0200
commit17518189218cdf4c8136ce6f0284519b9a878a09 (patch)
treee6a195e7e0c675ece5f4576af6008a61852127e9 /drivers/video
parentOMAPDSS: DISPC: store core clk rate (diff)
downloadkernel-qcow2-linux-17518189218cdf4c8136ce6f0284519b9a878a09.tar.gz
kernel-qcow2-linux-17518189218cdf4c8136ce6f0284519b9a878a09.tar.xz
kernel-qcow2-linux-17518189218cdf4c8136ce6f0284519b9a878a09.zip
OMAPDSS: DSI: fix wrong unsigned long long use
dsi_configure_dispc_clocks() stores dsi func clock into unsigned long long, but it should really be just unsigned long. Fix this. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/omap2/dss/dsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index b0eed4323394..dd13bd9138fc 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -4611,7 +4611,7 @@ static int dsi_configure_dispc_clocks(struct platform_device *dsidev)
struct dsi_data *dsi = dsi_get_dsidrv_data(dsidev);
struct dispc_clock_info dispc_cinfo;
int r;
- unsigned long long fck;
+ unsigned long fck;
fck = dsi_get_pll_hsdiv_dispc_rate(dsidev);