]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: v4l2-tpg-core.c: add space after %
authorHans Verkuil <hverkuil@xs4all.nl>
Sun, 25 Mar 2018 21:40:30 +0000 (17:40 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 4 Apr 2018 10:12:52 +0000 (06:12 -0400)
I know, it's a measly space, but I can't stand it since the
V4L2_PIX_FMT_NV24 case before this case does it right.

So add the space in order to restore blessed symmetry and
consistency and to make the world whole again...

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/common/v4l2-tpg/v4l2-tpg-core.c

index 37632bc524d406fe63acb9682b285410f555f892..9b64f4f354bf8e837d502038338024003154f81e 100644 (file)
@@ -1149,7 +1149,7 @@ static void gen_twopix(struct tpg_data *tpg,
        case V4L2_PIX_FMT_NV42:
                buf[0][offset] = r_y_h;
                buf[1][2 * offset] = b_v;
-               buf[1][(2 * offset + 1) %8] = g_u_s;
+               buf[1][(2 * offset + 1) % 8] = g_u_s;
                break;
 
        case V4L2_PIX_FMT_YUYV: