This permits extending the driver to other platforms without having to
modify its source code.
Co-developed-by: Niklas Cassel <niklas.cassel@linaro.org>
Signed-off-by: Niklas Cassel <niklas.cassel@linaro.org>
Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
Link: https://lkml.kernel.org/r/20191125135910.679310-6-niklas.cassel@linaro.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
        struct regmap *regmap;
        struct clk_hfpll *h;
        struct clk_init_data init = {
-               .parent_names = (const char *[]){ "xo" },
                .num_parents = 1,
                .ops = &clk_ops_hfpll,
                /*
                .flags = CLK_IGNORE_UNUSED,
        };
        int ret;
+       struct clk_parent_data pdata = { .index = 0 };
 
        h = devm_kzalloc(dev, sizeof(*h), GFP_KERNEL);
        if (!h)
                                          0, &init.name))
                return -ENODEV;
 
+       init.parent_data = &pdata;
+
        h->d = &hdata;
        h->clkr.hw.init = &init;
        spin_lock_init(&h->lock);