Re: [Linux-fbdev-devel] [PATCH 13/20] omapfb: dispc: Various typo fixes

2009-06-14 Thread Krzysztof Helt
On Thu,  4 Jun 2009 20:52:38 +0300
Imre Deak  wrote:

> - value and register offset was swapped in a dispc write
> - DISPC_CONTROL register was used instead of DISPC_SYSCONFIG
> - FIFO size bit field had incorrect length for OMAP3
> 
> Signed-off-by: Tony Lindgren 
> Fixed-by: arun 
> Fixed-by: Kalle Jokiniemi 
> Fixed-by: Andrzej Zaborowski 
> Signed-off-by: Imre Deak 
> ---
>  drivers/video/omap/dispc.c |8 
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 

Acked-by: Krzysztof Helt 


--
Wejdz i kliknij na Swoj znak zodiaku!
http://link.interia.pl/f21b8

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 13/20] omapfb: dispc: Various typo fixes

2009-06-04 Thread Imre Deak
- value and register offset was swapped in a dispc write
- DISPC_CONTROL register was used instead of DISPC_SYSCONFIG
- FIFO size bit field had incorrect length for OMAP3

Signed-off-by: Tony Lindgren 
Fixed-by: arun 
Fixed-by: Kalle Jokiniemi 
Fixed-by: Andrzej Zaborowski 
Signed-off-by: Imre Deak 
---
 drivers/video/omap/dispc.c |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c
index 148cbcc..2db8fbb 100644
--- a/drivers/video/omap/dispc.c
+++ b/drivers/video/omap/dispc.c
@@ -286,7 +286,7 @@ static void setup_plane_fifo(int plane, int ext_mode)
BUG_ON(plane > 2);
 
l = dispc_read_reg(fsz_reg[plane]);
-   l &= FLD_MASK(0, 9);
+   l &= FLD_MASK(0, 11);
if (ext_mode) {
low = l * 3 / 4;
high = l;
@@ -294,7 +294,7 @@ static void setup_plane_fifo(int plane, int ext_mode)
low = l / 4;
high = l * 3 / 4;
}
-   MOD_REG_FLD(ftrs_reg[plane], FLD_MASK(16, 9) | FLD_MASK(0, 9),
+   MOD_REG_FLD(ftrs_reg[plane], FLD_MASK(16, 12) | FLD_MASK(0, 12),
(high << 16) | low);
 }
 
@@ -1397,7 +1397,7 @@ static int omap_dispc_init(struct omapfb_device *fbdev, 
int ext_mode,
}
 
/* Enable smart idle and autoidle */
-   l = dispc_read_reg(DISPC_CONTROL);
+   l = dispc_read_reg(DISPC_SYSCONFIG);
l &= ~((3 << 12) | (3 << 3));
l |= (2 << 12) | (2 << 3) | (1 << 0);
dispc_write_reg(DISPC_SYSCONFIG, l);
@@ -1409,7 +1409,7 @@ static int omap_dispc_init(struct omapfb_device *fbdev, 
int ext_mode,
dispc_write_reg(DISPC_CONFIG, l);
 
l = dispc_read_reg(DISPC_IRQSTATUS);
-   dispc_write_reg(l, DISPC_IRQSTATUS);
+   dispc_write_reg(DISPC_IRQSTATUS, l);
 
/* Enable those that we handle always */
omap_dispc_enable_irqs(DISPC_IRQ_FRAMEMASK);
-- 
1.6.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html