Lines Matching defs:pdev
72 static int mss_sc7180_probe(struct platform_device *pdev)
76 pm_runtime_enable(&pdev->dev);
77 ret = pm_clk_create(&pdev->dev);
81 ret = pm_clk_add(&pdev->dev, "cfg_ahb");
83 dev_err(&pdev->dev, "failed to acquire iface clock\n");
87 ret = qcom_cc_probe(pdev, &mss_sc7180_desc);
94 pm_clk_destroy(&pdev->dev);
97 pm_runtime_disable(&pdev->dev);
102 static int mss_sc7180_remove(struct platform_device *pdev)
104 pm_clk_destroy(&pdev->dev);
105 pm_runtime_disable(&pdev->dev);