static unsigned int fimc_is_sen_video_poll(struct file *file, struct poll_table_struct *wait) { u32 ret = 0; struct fimc_is_video_ctx *vctx = file->private_data; ret = fimc_is_video_poll(file, vctx, wait); return ret; }
static unsigned int fimc_is_vdo_video_poll(struct file *file, struct poll_table_struct *wait) { u32 ret = 0; struct fimc_is_video_ctx *vctx = file->private_data; ret = fimc_is_video_poll(file, vctx, wait); if (ret) merr("fimc_is_video_poll is fail(%d)", vctx, ret); return ret; }