public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver
       [not found] ` <1350385020-7815-3-git-send-email-sbabic@denx.de>
@ 2012-10-16 12:53   ` Anatolij Gustschin
  2012-10-16 13:11     ` Stefano Babic
  0 siblings, 1 reply; 4+ messages in thread
From: Anatolij Gustschin @ 2012-10-16 12:53 UTC (permalink / raw)
  To: u-boot

Hi Stefano,

On Tue, 16 Oct 2012 12:56:59 +0200
Stefano Babic <sbabic@denx.de> wrote:

> Signed-off-by: Stefano Babic <sbabic@denx.de>
> ---
>  arch/arm/include/asm/arch-omap3/dss.h |    1 +
>  1 file changed, 1 insertion(+)

this patch didn't reach the U-Boot list and the patchwork somehow.
Other patches of the series too, it seems. Could you please check?
Thanks!

Anatolij

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver
  2012-10-16 12:53   ` [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver Anatolij Gustschin
@ 2012-10-16 13:11     ` Stefano Babic
  0 siblings, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2012-10-16 13:11 UTC (permalink / raw)
  To: u-boot

Am 16/10/2012 14:53, schrieb Anatolij Gustschin:
> Hi Stefano,
> 
> On Tue, 16 Oct 2012 12:56:59 +0200
> Stefano Babic <sbabic@denx.de> wrote:
> 
>> Signed-off-by: Stefano Babic <sbabic@denx.de>
>> ---
>>  arch/arm/include/asm/arch-omap3/dss.h |    1 +
>>  1 file changed, 1 insertion(+)
> 
> this patch didn't reach the U-Boot list and the patchwork somehow.
> Other patches of the series too, it seems. Could you please check?
> Thanks!
> 

Failure using patman - I try again, thanks.

Stefano


-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver
  2012-10-16 14:07 [U-Boot] [PATCH v1 1/4] OMAP3: updated pinmux and environment for new revision of mcx board Stefano Babic
@ 2012-10-16 14:07 ` Stefano Babic
  2012-10-16 14:26   ` Anatolij Gustschin
  0 siblings, 1 reply; 4+ messages in thread
From: Stefano Babic @ 2012-10-16 14:07 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Stefano Babic <sbabic@denx.de>
---
 arch/arm/include/asm/arch-omap3/dss.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/include/asm/arch-omap3/dss.h b/arch/arm/include/asm/arch-omap3/dss.h
index 54add4b..ffaffbb 100644
--- a/arch/arm/include/asm/arch-omap3/dss.h
+++ b/arch/arm/include/asm/arch-omap3/dss.h
@@ -190,6 +190,7 @@ struct panel_config {
 
 #define PANEL_TIMING_H(bp, fp, sw) (DSS_HBP(bp) | DSS_HFP(fp) | DSS_HSW(sw))
 #define PANEL_TIMING_V(bp, fp, sw) (DSS_VBP(bp) | DSS_VFP(fp) | DSS_VSW(sw))
+#define PANEL_LCD_SIZE(xres, yres) ((yres - 1) << 16 | (xres - 1))
 
 /* Generic DSS Functions */
 void omap3_dss_venc_config(const struct venc_regs *venc_cfg,
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver
  2012-10-16 14:07 ` [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver Stefano Babic
@ 2012-10-16 14:26   ` Anatolij Gustschin
  0 siblings, 0 replies; 4+ messages in thread
From: Anatolij Gustschin @ 2012-10-16 14:26 UTC (permalink / raw)
  To: u-boot

On Tue, 16 Oct 2012 16:07:05 +0200
Stefano Babic <sbabic@denx.de> wrote:

> Signed-off-by: Stefano Babic <sbabic@denx.de>
> ---
>  arch/arm/include/asm/arch-omap3/dss.h |    1 +
>  1 file changed, 1 insertion(+)

Acked-by: Anatolij Gustschin <agust@denx.de>

Thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-10-16 14:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1350385020-7815-1-git-send-email-sbabic@denx.de>
     [not found] ` <1350385020-7815-3-git-send-email-sbabic@denx.de>
2012-10-16 12:53   ` [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver Anatolij Gustschin
2012-10-16 13:11     ` Stefano Babic
2012-10-16 14:07 [U-Boot] [PATCH v1 1/4] OMAP3: updated pinmux and environment for new revision of mcx board Stefano Babic
2012-10-16 14:07 ` [U-Boot] [PATCH v1 3/4] VIDEO: add macro to set LCD size for DSS driver Stefano Babic
2012-10-16 14:26   ` Anatolij Gustschin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox