diff options
author | Jingoo Han <jg1.han@samsung.com> | 2011-05-24 08:55:23 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-05-24 18:04:37 +0900 |
commit | af1ce6b2fad7d572aef040d61a935da28a861853 (patch) | |
tree | a18e6ff51105adacd20c887fdceec15872878898 /drivers/video/s3c-fb.c | |
parent | 6aa9681100303bd467cbd0262eb00da8d492fc7f (diff) | |
download | linux-3.10-af1ce6b2fad7d572aef040d61a935da28a861853.tar.gz linux-3.10-af1ce6b2fad7d572aef040d61a935da28a861853.tar.bz2 linux-3.10-af1ce6b2fad7d572aef040d61a935da28a861853.zip |
video: s3c-fb: correct transparency checking in 32bpp
32bpp means ARGB 8888 in the driver, therfore the transparency length
and offset should be 8 and 24 respectively. However, the transparency
length and offset were previously 0, which means that the driver supports
RGB 888 without alpha blending when 32bpp is used.
So, the transparency checking in 32bpp is corrected so that the
transparency length and offset are 8 and 24 respectively.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/s3c-fb.c')
-rw-r--r-- | drivers/video/s3c-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c index 2bd86a9fa3a..0352afa49a3 100644 --- a/drivers/video/s3c-fb.c +++ b/drivers/video/s3c-fb.c @@ -302,6 +302,7 @@ static int s3c_fb_check_var(struct fb_var_screeninfo *var, var->blue.length = 5; break; + case 32: case 28: case 25: var->transp.length = var->bits_per_pixel - 24; @@ -310,7 +311,6 @@ static int s3c_fb_check_var(struct fb_var_screeninfo *var, case 24: /* our 24bpp is unpacked, so 32bpp */ var->bits_per_pixel = 32; - case 32: var->red.offset = 16; var->red.length = 8; var->green.offset = 8; |