Lines Matching refs:notifier
322 /* The .bound() notifier callback when a match is found */
323 static int rockchip_csi2_dphy_notifier_bound(struct v4l2_async_notifier *notifier, struct v4l2_subdev *sd,
326 struct csi2_dphy *dphy = container_of(notifier, struct csi2_dphy, notifier);
365 static void rockchip_csi2_dphy_notifier_unbind(struct v4l2_async_notifier *notifier, struct v4l2_subdev *sd,
368 struct csi2_dphy *dphy = container_of(notifier, struct csi2_dphy, notifier);
431 v4l2_async_notifier_init(&dphy->notifier);
434 dphy->dev, &dphy->notifier, sizeof(struct sensor_async_subdev), 0, rockchip_csi2_dphy_fwnode_parse);
439 dphy->sd.subdev_notifier = &dphy->notifier;
440 dphy->notifier.ops = &rockchip_csi2_dphy_async_ops;
441 ret = v4l2_async_subdev_notifier_register(&dphy->sd, &dphy->notifier);
443 dev_err(dphy->dev, "failed to register async notifier : %d\n", ret);
444 v4l2_async_notifier_cleanup(&dphy->notifier);