diff options
author | Ye Li <ye.li@nxp.com> | 2016-03-04 10:10:44 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-04 16:00:08 +0800 |
commit | 8ada91778f7f28dd33b80f515a35d09c1398933c (patch) | |
tree | f7d85460ce985931be44470aaed7d23a38762045 /drivers/video | |
parent | c54bd59f57d73309e0e2aab59ec1049cd4bec01a (diff) | |
download | u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.zip u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.tar.gz u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.tar.bz2 |
MLK-12492-1 mx6: fix type style problems introduced by patch MLK-12483
Some type style problems found by review-commits for previous patch
MLK-12483, fix them in this patch and re-check.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/mxsfb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c index 270a31a..05e5fbb 100644 --- a/drivers/video/mxsfb.c +++ b/drivers/video/mxsfb.c @@ -171,9 +171,8 @@ void lcdif_power_down() int timeout = WAIT_FOR_VSYNC_TIMEOUT; #ifdef CONFIG_MX6 - if (check_module_fused(MX6_MODULE_LCDIF)) { + if (check_module_fused(MX6_MODULE_LCDIF)) return; - } #endif writel(panel.frameAdrs, ®s->hw_lcdif_cur_buf); writel(panel.frameAdrs, ®s->hw_lcdif_next_buf); |