[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1263574286-6382-1-git-send-email-broonie@opensource.wolfsonmicro.com>
Date: Fri, 15 Jan 2010 16:51:26 +0000
From: Mark Brown <broonie@...nsource.wolfsonmicro.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
Ben Dooks <ben-linux@...ff.org>
Cc: linux-kernel@...r.kernel.org,
Mark Brown <broonie@...nsource.wolfsonmicro.com>
Subject: [PATCH] s3c-fb: Fix mixed code and variable declaration
Hoist osdc_data up into the variable declaration section.
Reported-by: Andrew Morton <akpm@...ux-foundation.org>
Signed-off-by: Mark Brown <broonie@...nsource.wolfsonmicro.com>
---
drivers/video/s3c-fb.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c
index e2e7afd..58e2fed 100644
--- a/drivers/video/s3c-fb.c
+++ b/drivers/video/s3c-fb.c
@@ -269,6 +269,7 @@ static int s3c_fb_set_par(struct fb_info *info)
int win_no = win->index;
u32 data;
u32 pagewidth;
+ u32 osdc_data;
int clkdiv;
dev_dbg(sfb->dev, "setting framebuffer parameters\n");
@@ -359,8 +360,6 @@ static int s3c_fb_set_par(struct fb_info *info)
data = var->xres * var->yres;
- u32 osdc_data = 0;
-
osdc_data = VIDISD14C_ALPHA1_R(0xf) |
VIDISD14C_ALPHA1_G(0xf) |
VIDISD14C_ALPHA1_B(0xf);
--
1.6.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists