Lines Matching defs:rpdev
149 static int qcom_smd_rpm_callback(struct rpmsg_device *rpdev,
158 struct qcom_smd_rpm *rpm = dev_get_drvdata(&rpdev->dev);
197 static int qcom_smd_rpm_probe(struct rpmsg_device *rpdev)
202 rpm = devm_kzalloc(&rpdev->dev, sizeof(*rpm), GFP_KERNEL);
209 rpm->dev = &rpdev->dev;
210 rpm->rpm_channel = rpdev->ept;
211 dev_set_drvdata(&rpdev->dev, rpm);
213 rpm->icc = platform_device_register_data(&rpdev->dev, "icc_smd_rpm", -1,
218 ret = of_platform_populate(rpdev->dev.of_node, NULL, NULL, &rpdev->dev);
225 static void qcom_smd_rpm_remove(struct rpmsg_device *rpdev)
227 struct qcom_smd_rpm *rpm = dev_get_drvdata(&rpdev->dev);
230 of_platform_depopulate(&rpdev->dev);