}
EXPORT_SYMBOL_GPL(vimc_ent_sd_register);
-void vimc_ent_sd_unregister(struct vimc_ent_device *ved, struct v4l2_subdev *sd)
-{
- v4l2_device_unregister_subdev(sd);
-}
-EXPORT_SYMBOL_GPL(vimc_ent_sd_unregister);
const struct v4l2_subdev_internal_ops *sd_int_ops,
const struct v4l2_subdev_ops *sd_ops);
-/**
- * vimc_ent_sd_unregister - cleanup and unregister a subdev node
- *
- * @ved: the vimc_ent_device struct to be cleaned up
- * @sd: the v4l2_subdev struct to be unregistered
- *
- * Helper function cleanup and unregister the struct vimc_ent_device and struct
- * v4l2_subdev which represents a subdev node in the topology
- */
-void vimc_ent_sd_unregister(struct vimc_ent_device *ved,
- struct v4l2_subdev *sd);
-
/**
* vimc_link_validate - validates a media link
*
struct vimc_deb_device *vdeb;
vdeb = container_of(ved, struct vimc_deb_device, ved);
- vimc_ent_sd_unregister(ved, &vdeb->sd);
+ v4l2_device_unregister_subdev(&vdeb->sd);
}
struct vimc_ent_device *vimc_deb_add(struct vimc_device *vimc,
struct vimc_sca_device *vsca;
vsca = container_of(ved, struct vimc_sca_device, ved);
- vimc_ent_sd_unregister(ved, &vsca->sd);
+ v4l2_device_unregister_subdev(&vsca->sd);
}
struct vimc_ent_device *vimc_sca_add(struct vimc_device *vimc,
struct vimc_sen_device *vsen;
vsen = container_of(ved, struct vimc_sen_device, ved);
- vimc_ent_sd_unregister(ved, &vsen->sd);
+ v4l2_device_unregister_subdev(&vsen->sd);
}
/* Image Processing Controls */