]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: imx-ic-prpencvf: Use empty initializer to clear all struct members
authorFabio Estevam <fabio.estevam@nxp.com>
Sat, 10 Feb 2018 14:38:50 +0000 (09:38 -0500)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Mon, 26 Feb 2018 15:31:24 +0000 (10:31 -0500)
{0} only cleans the first member of the structure.

Use {} instead, which cleans all the members of the structure.

Reported-by: Steve Longerbeam <slongerbeam@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/staging/media/imx/imx-ic-prpencvf.c

index 143038c6c403f0085fd7a8327a6682a67e559858..60f392aca5532d2d325b74090033ae97c254d4fb 100644 (file)
@@ -923,7 +923,7 @@ static int prp_enum_frame_size(struct v4l2_subdev *sd,
                               struct v4l2_subdev_frame_size_enum *fse)
 {
        struct prp_priv *priv = sd_to_priv(sd);
-       struct v4l2_subdev_format format = {0};
+       struct v4l2_subdev_format format = {};
        const struct imx_media_pixfmt *cc;
        int ret = 0;