video: s3c-fb: fix typo in definition of VIDCON1_VSTATUS_FRONTPORCH value
authorTomasz Figa <[email protected]>
Fri, 22 Feb 2013 00:42:36 +0000 (16:42 -0800)
committerLinus Torvalds <[email protected]>
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 <[email protected]>
Signed-off-by: Kyungmin Park <[email protected]>
Signed-off-by: Jingoo Han <[email protected]>
Cc: Florian Tobias Schandinat <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
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)