summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Cerqueira <cyanogenmod@cerqueira.org>2013-01-20 20:36:36 +0000
committerRicardo Cerqueira <cyanogenmod@cerqueira.org>2013-01-20 20:36:36 +0000
commit4525a59a21f72979b53370cdc68a0e6fdb1d7e00 (patch)
treeb8ceb6d7392419eee87cb5844e2f12b31bc9feec
parentb4164d2a78b7b459095326c7be768d703331a568 (diff)
fake_fb: Decouple input and output resolutionscm-10.1-M1
For userspace configuration consistency, the input resolution is now always 1920x1080
-rw-r--r--drivers/video/samsung/fake_fb.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/video/samsung/fake_fb.c b/drivers/video/samsung/fake_fb.c
index 305697d8e105..12d651f1b996 100644
--- a/drivers/video/samsung/fake_fb.c
+++ b/drivers/video/samsung/fake_fb.c
@@ -13,8 +13,10 @@
#include "s3cfb.h"
static struct s3cfb_lcd fake_fb = {
- .width = 1280,
- .height = 720,
+ /*.width = 1280,
+ .height = 720,*/
+ .width = 1920,
+ .height = 1080,
.bpp = 24,
.freq = 60,
@@ -72,8 +74,8 @@ void s3cfb_set_lcd_info(struct s3cfb_global *ctrl)
{
fake_fb.init_ldi = NULL;
- if(SetEnableX) fake_fb.width = atoi(FbBootArgsX);
- if(SetEnableY) fake_fb.height = atoi(FbBootArgsY);
+/* if(SetEnableX) fake_fb.width = atoi(FbBootArgsX);
+ if(SetEnableY) fake_fb.height = atoi(FbBootArgsY);*/
ctrl->lcd = &fake_fb;