diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-27 19:43:03 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-27 19:43:03 +0100 |
commit | b7e8c43c6071c139cd75d0bed0c0c564cea6d4b7 (patch) | |
tree | 16da16fec49eac77026300950300bee4f8be7750 | |
parent | 57f0d12ccb58b0d9328be1dc0ea9e7b538b84439 (diff) | |
parent | 9beb09f1cadf33145c307c504f844ae24686c872 (diff) |
Merge tag 'renesas-fbdev-fixes-for-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into fixes
From Simon Horman <horms+renesas@verge.net.au>:
Renesas fbdev fixes for v3.9
A fix from Morimoto-san to correct the horizontal location of output.
I apologise for this being posted late in the cycle.
* tag 'renesas-fbdev-fixes-for-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index 63203acef812..0264704a52be 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c @@ -858,6 +858,7 @@ static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch) tmp = ((mode->xres & 7) << 24) | ((display_h_total & 7) << 16) | ((mode->hsync_len & 7) << 8) | (hsync_pos & 7); lcdc_write_chan(ch, LDHAJR, tmp); + lcdc_write_chan_mirror(ch, LDHAJR, tmp); } static void sh_mobile_lcdc_overlay_setup(struct sh_mobile_lcdc_overlay *ovl) |