diff options
author | Koen Kooi <koen@openembedded.org> | 2009-06-19 15:13:09 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-06-19 15:13:09 +0200 |
commit | b25b3f49653065e2a69a04d43f6ee030259c3891 (patch) | |
tree | 9e93aced9167d39f2b404fd5380ad24d60c4904b /recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch | |
parent | 8b4c4053b8796481e9534528ebfbce8f13f4e721 (diff) |
linux-omap-pm git: start syncing with linux-omap non-pm
* also add dvsdk defines to omap3.inc
Diffstat (limited to 'recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch')
-rw-r--r-- | recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch b/recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch new file mode 100644 index 0000000000..2ba9b1b1a2 --- /dev/null +++ b/recipes/linux/linux-omap-pm/dss2/0064-VRFB-fix-debug-messages.patch @@ -0,0 +1,35 @@ +From 784271e9546844c5e69ec6d8f2fd3713847b6ab2 Mon Sep 17 00:00:00 2001 +From: Imre Deak <imre.deak@nokia.com> +Date: Tue, 5 May 2009 11:16:14 +0200 +Subject: [PATCH 64/69] VRFB: fix debug messages + +Signed-off-by: Imre Deak <imre.deak@nokia.com> +--- + arch/arm/plat-omap/vrfb.c | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/arch/arm/plat-omap/vrfb.c b/arch/arm/plat-omap/vrfb.c +index 649803e..289fc8a 100644 +--- a/arch/arm/plat-omap/vrfb.c ++++ b/arch/arm/plat-omap/vrfb.c +@@ -87,7 +87,7 @@ void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, + u32 control; + + DBG("omapfb_set_vrfb(%d, %lx, %dx%d, %d)\n", ctx, paddr, +- width, height, bytespp); ++ width, height, color_mode); + + switch (color_mode) { + case OMAP_DSS_COLOR_RGB16: +@@ -127,7 +127,7 @@ void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, + vrfb_width = ALIGN(width * bytespp, VRFB_PAGE_WIDTH) / bytespp; + vrfb_height = ALIGN(height, VRFB_PAGE_HEIGHT); + +- DBG("vrfb w %u, h %u\n", vrfb_width, vrfb_height); ++ DBG("vrfb w %u, h %u bytespp %d\n", vrfb_width, vrfb_height, bytespp); + + size = vrfb_width << SMS_IMAGEWIDTH_OFFSET; + size |= vrfb_height << SMS_IMAGEHEIGHT_OFFSET; +-- +1.6.2.4 + |