Commit ba0eb9d5 authored by Stephen Boyd's avatar Stephen Boyd

clk: tegra: Use NULL for pointer initialization

This silences a sparse warning about using a plain integer instead of
NULL for a pointer.
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 37a94882
......@@ -2993,7 +2993,7 @@ static const char * const la_parents[] = {
};
static struct tegra_clk_periph tegra210_la =
TEGRA_CLK_PERIPH(29, 7, 9, 0, 8, 1, TEGRA_DIVIDER_ROUND_UP, 76, 0, NULL, 0);
TEGRA_CLK_PERIPH(29, 7, 9, 0, 8, 1, TEGRA_DIVIDER_ROUND_UP, 76, 0, NULL, NULL);
static __init void tegra210_periph_clk_init(void __iomem *clk_base,
void __iomem *pmc_base)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment