]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
video: s3c-fb: fix typo in definition of VIDCON1_VSTATUS_FRONTPORCH value
authorTomasz Figa <t.figa@samsung.com>
Fri, 22 Feb 2013 00:42:36 +0000 (16:42 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 22 Feb 2013 01:22:18 +0000 (17:22 -0800)
The correct value for VIDCON1_VSTATUS_FRONTPORCH is 3, not 0.

Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/video/samsung_fimd.h

index 2f95d9a377974cbde7f5301f6060fd78e6342982..b0393209679b083e14aa2adeb5077a20975c3321 100644 (file)
@@ -82,7 +82,7 @@
 #define VIDCON1_VSTATUS_VSYNC                  (0x0 << 13)
 #define VIDCON1_VSTATUS_BACKPORCH              (0x1 << 13)
 #define VIDCON1_VSTATUS_ACTIVE                 (0x2 << 13)
-#define VIDCON1_VSTATUS_FRONTPORCH             (0x0 << 13)
+#define VIDCON1_VSTATUS_FRONTPORCH             (0x3 << 13)
 #define VIDCON1_VCLK_MASK                      (0x3 << 9)
 #define VIDCON1_VCLK_HOLD                      (0x0 << 9)
 #define VIDCON1_VCLK_RUN                       (0x1 << 9)