From: Geert Uytterhoeven Date: Mon, 17 Jun 2019 12:00:56 +0000 (+0200) Subject: soc: renesas: rcar-sysc: Use [] to denote a flexible array member X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0ed0eb0171d7c19310d9f7b06a6dee82a4fb8ab6;p=linux.git soc: renesas: rcar-sysc: Use [] to denote a flexible array member Flexible array members should be denoted using [] instead of [0], else gcc will not warn when they are no longer at the end of the structure. Signed-off-by: Geert Uytterhoeven Reviewed-by: Simon Horman --- diff --git a/drivers/soc/renesas/rcar-sysc.c b/drivers/soc/renesas/rcar-sysc.c index 0c80fab4f8de6..02b29ea62dc4d 100644 --- a/drivers/soc/renesas/rcar-sysc.c +++ b/drivers/soc/renesas/rcar-sysc.c @@ -170,7 +170,7 @@ struct rcar_sysc_pd { struct generic_pm_domain genpd; struct rcar_sysc_ch ch; unsigned int flags; - char name[0]; + char name[]; }; static inline struct rcar_sysc_pd *to_rcar_pd(struct generic_pm_domain *d)