diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-03-07 09:21:45 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-04-03 12:19:16 (GMT) |
commit | 17518189218cdf4c8136ce6f0284519b9a878a09 (patch) | |
tree | e6a195e7e0c675ece5f4576af6008a61852127e9 /drivers/video | |
parent | 7b3926b3b9d11d0fbb613ae747f44200142e1c98 (diff) | |
download | linux-fsl-qoriq-17518189218cdf4c8136ce6f0284519b9a878a09.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index b0eed43..dd13bd9 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); |