Lines Matching defs:pdev
109 static int turingcc_probe(struct platform_device *pdev)
113 pm_runtime_enable(&pdev->dev);
114 ret = pm_clk_create(&pdev->dev);
118 ret = pm_clk_add(&pdev->dev, NULL);
120 dev_err(&pdev->dev, "failed to acquire iface clock\n");
124 ret = qcom_cc_probe(pdev, &turingcc_desc);
131 pm_clk_destroy(&pdev->dev);
134 pm_runtime_disable(&pdev->dev);
139 static int turingcc_remove(struct platform_device *pdev)
141 pm_clk_destroy(&pdev->dev);
142 pm_runtime_disable(&pdev->dev);