The patch titled Subject: video: s3c-fb: fix typo in definition of VIDCON1_VSTATUS_FRONTPORCH value has been added to the -mm tree. Its filename is video-s3c-fb-fix-typo-in-definition-of-vidcon1_vstatus_frontporch-value.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Tomasz Figa <t.figa@xxxxxxxxxxx> Subject: video: s3c-fb: fix typo in definition of VIDCON1_VSTATUS_FRONTPORCH value The correct value for VIDCON1_VSTATUS_FRONTPORCH is 3, not 0. Signed-off-by: Tomasz Figa <t.figa@xxxxxxxxxxx> Signed-off-by: Kyungmin Park <kyungmin.park@xxxxxxxxxxx> Signed-off-by: Jingoo Han <jg1.han@xxxxxxxxxxx> Cc: Florian Tobias Schandinat <FlorianSchandinat@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/video/samsung_fimd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/video/samsung_fimd.h~video-s3c-fb-fix-typo-in-definition-of-vidcon1_vstatus_frontporch-value include/video/samsung_fimd.h --- a/include/video/samsung_fimd.h~video-s3c-fb-fix-typo-in-definition-of-vidcon1_vstatus_frontporch-value +++ a/include/video/samsung_fimd.h @@ -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) _ Patches currently in -mm which might be from t.figa@xxxxxxxxxxx are linux-next.patch video-s3c-fb-use-arch_-dependancy.patch video-s3c-fb-remove-duplicated-s3c_fb_max_win.patch video-s3c-fb-remove-unnecessary-brackets.patch video-s3c-fb-add-the-bit-definitions-for-csc-eq709-and-eq601.patch video-s3c-fb-fix-typo-in-definition-of-vidcon1_vstatus_frontporch-value.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html