Lines Matching defs:clks
72 const char * const *clks;
80 struct clk_bulk_data *clks;
242 ret = clk_bulk_prepare_enable(otp->data->num_clks, otp->clks);
244 dev_err(otp->dev, "failed to prepare/enable clks\n");
250 clk_bulk_disable_unprepare(otp->data->num_clks, otp->clks);
270 .clks = px30_otp_clocks,
281 .clks = rk3588_otp_clocks,
327 otp->clks = devm_kcalloc(dev, data->num_clks, sizeof(*otp->clks),
329 if (!otp->clks)
333 otp->clks[i].id = data->clks[i];
335 ret = devm_clk_bulk_get(dev, data->num_clks, otp->clks);