Lines Matching defs:pclk
86 struct clk *pclk;
387 clk_disable_unprepare(dw_wdt->pclk);
401 err = clk_prepare_enable(dw_wdt->pclk);
591 * In this case both tclk and pclk clocks are supposed to be specified.
593 * so the pclk phandle reference is left optional. If it couldn't be
596 dw_wdt->pclk = devm_clk_get_optional(dev, "pclk");
597 if (IS_ERR(dw_wdt->pclk)) {
598 ret = PTR_ERR(dw_wdt->pclk);
602 ret = clk_prepare_enable(dw_wdt->pclk);
682 clk_disable_unprepare(dw_wdt->pclk);
697 clk_disable_unprepare(dw_wdt->pclk);