On 06/05/15 09:39, Stephen Boyd wrote: > drivers/clk/samsung/clk-exynos5260.c:138:40: warning: Using plain integer as > NULL pointer
> Cc: Sylwester Nawrocki <[email protected]> > Signed-off-by: Stephen Boyd <[email protected]> > --- > drivers/clk/samsung/clk-exynos5260.c | 26 +++++++++++++------------- > 1 file changed, 13 insertions(+), 13 deletions(-) > > diff --git a/drivers/clk/samsung/clk-exynos5260.c > b/drivers/clk/samsung/clk-exynos5260.c > index df1d83c45554..06f96eb7cf93 100644 > --- a/drivers/clk/samsung/clk-exynos5260.c > +++ b/drivers/clk/samsung/clk-exynos5260.c > @@ -135,7 +135,7 @@ static struct samsung_gate_clock aud_gate_clks[] > __initdata = { > > static void __init exynos5260_clk_aud_init(struct device_node *np) > { > - struct samsung_cmu_info cmu = {0}; > + struct samsung_cmu_info cmu = { NULL }; I'd vote for an empty initializer list, anyway, thanks for correcting that. Acked-by: Sylwester Nawrocki <[email protected]> -- Thanks, Sylwester -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

