]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
bus: fsl-mc: properly empty-initialize structure
authorIoana Ciornei <ioana.ciornei@nxp.com>
Wed, 4 Dec 2019 14:29:50 +0000 (16:29 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Jan 2020 14:06:06 +0000 (15:06 +0100)
Use the proper form of the empty initializer when working with
structures that contain an array. Otherwise, older gcc versions (eg gcc
4.9) will complain about this.

Fixes: 1ac210d128ef ("bus: fsl-mc: add the fsl_mc_get_endpoint function")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Acked-by: Laurentiu Tudor <laurentiu.tudor@nxp.com>
Link: https://lore.kernel.org/r/20191204142950.30206-1-ioana.ciornei@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/bus/fsl-mc/fsl-mc-bus.c

index a07cc19becdbadca7cfd3ccb4fc9d0c92c6aa917..c78d10ea641fb2f2891784c5adf0fc4c176afebb 100644 (file)
@@ -715,9 +715,9 @@ EXPORT_SYMBOL_GPL(fsl_mc_device_remove);
 struct fsl_mc_device *fsl_mc_get_endpoint(struct fsl_mc_device *mc_dev)
 {
        struct fsl_mc_device *mc_bus_dev, *endpoint;
-       struct fsl_mc_obj_desc endpoint_desc = { 0 };
-       struct dprc_endpoint endpoint1 = { 0 };
-       struct dprc_endpoint endpoint2 = { 0 };
+       struct fsl_mc_obj_desc endpoint_desc = {{ 0 }};
+       struct dprc_endpoint endpoint1 = {{ 0 }};
+       struct dprc_endpoint endpoint2 = {{ 0 }};
        int state, err;
 
        mc_bus_dev = to_fsl_mc_device(mc_dev->dev.parent);