diff options
author | Jingoo Han <jg1.han@samsung.com> | 2011-12-02 19:07:17 +0900 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-12-19 20:03:30 +0000 |
commit | 2d9ae7ac48c91e15e693038bf0dff004f7872aaf (patch) | |
tree | a16a0e31db979b8aff07af719bdcb50adbd51a83 /drivers/video/s3c-fb.c | |
parent | a4581b35e1bc80becf240238bc787a5ec2727db0 (diff) | |
download | linux-3.10-2d9ae7ac48c91e15e693038bf0dff004f7872aaf.tar.gz linux-3.10-2d9ae7ac48c91e15e693038bf0dff004f7872aaf.tar.bz2 linux-3.10-2d9ae7ac48c91e15e693038bf0dff004f7872aaf.zip |
video: s3c-fb: set missing bitmask of enabled hardware window
This patch set missing bitmask of enabled hardware window which
should be checked whenever the hardware window is enabled.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/s3c-fb.c')
-rw-r--r-- | drivers/video/s3c-fb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c index e84677e6f5e..7a840d52474 100644 --- a/drivers/video/s3c-fb.c +++ b/drivers/video/s3c-fb.c @@ -574,6 +574,7 @@ static int s3c_fb_set_par(struct fb_info *info) } data = WINCONx_ENWIN; + sfb->enabled |= (1 << win->index); /* note, since we have to round up the bits-per-pixel, we end up * relying on the bitfield information for r/g/b/a to work out |