* [PATCH] fbdev: sh_mobile_lcdcfb: fix bug in reconfig()
@ 2010-11-15 21:43 Arnd Hannemann
2010-11-16 1:14 ` Paul Mundt
0 siblings, 1 reply; 2+ messages in thread
From: Arnd Hannemann @ 2010-11-15 21:43 UTC (permalink / raw)
To: linux-fbdev
The function sh_mobile_fb_reconfig() contained a bug,
which caused the line_length to be set wrongly, if a mode
with a different X-resolution than the default one was chosen.
This caused 1080p24 mode to not work on AP4EVB.
Additionally the notifier chain was also called with the wrong
mode.
This patch fixes this, by using the X-resolution of the new
mode instead of the old one to calculate line length and
hands over the correct mode to the notifier chain.
Signed-off-by: Arnd Hannemann <arnd@arndnet.de>
---
drivers/video/sh_mobile_lcdcfb.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c
index 993be38..7c2c314 100644
--- a/drivers/video/sh_mobile_lcdcfb.c
+++ b/drivers/video/sh_mobile_lcdcfb.c
@@ -860,7 +860,7 @@ static void sh_mobile_fb_reconfig(struct fb_info *info)
/* Couldn't reconfigure, hopefully, can continue as before */
return;
- info->fix.line_length = mode2.xres * (ch->cfg.bpp / 8);
+ info->fix.line_length = mode1.xres * (ch->cfg.bpp / 8);
/*
* fb_set_var() calls the notifier change internally, only if
@@ -868,7 +868,7 @@ static void sh_mobile_fb_reconfig(struct fb_info *info)
* user event, we have to call the chain ourselves.
*/
event.info = info;
- event.data = &mode2;
+ event.data = &mode1;
fb_notifier_call_chain(evnt, &event);
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fbdev: sh_mobile_lcdcfb: fix bug in reconfig()
2010-11-15 21:43 [PATCH] fbdev: sh_mobile_lcdcfb: fix bug in reconfig() Arnd Hannemann
@ 2010-11-16 1:14 ` Paul Mundt
0 siblings, 0 replies; 2+ messages in thread
From: Paul Mundt @ 2010-11-16 1:14 UTC (permalink / raw)
To: linux-fbdev
On Mon, Nov 15, 2010 at 10:43:22PM +0100, Arnd Hannemann wrote:
> The function sh_mobile_fb_reconfig() contained a bug,
> which caused the line_length to be set wrongly, if a mode
> with a different X-resolution than the default one was chosen.
> This caused 1080p24 mode to not work on AP4EVB.
> Additionally the notifier chain was also called with the wrong
> mode.
>
> This patch fixes this, by using the X-resolution of the new
> mode instead of the old one to calculate line length and
> hands over the correct mode to the notifier chain.
>
> Signed-off-by: Arnd Hannemann <arnd@arndnet.de>
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-11-16 1:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-15 21:43 [PATCH] fbdev: sh_mobile_lcdcfb: fix bug in reconfig() Arnd Hannemann
2010-11-16 1:14 ` Paul Mundt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).