return 0;
 }
 
-/*
- * Return the vpe_ctx structure for a given struct file
- */
-static struct vpe_ctx *file2ctx(struct file *file)
-{
-       return container_of(file->private_data, struct vpe_ctx, fh);
-}
-
 /*
  * mem2mem callbacks
  */
 static int vpe_g_fmt(struct file *file, void *priv, struct v4l2_format *f)
 {
        struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
        struct vb2_queue *vq;
        struct vpe_q_data *q_data;
        int i;
 
 static int vpe_try_fmt(struct file *file, void *priv, struct v4l2_format *f)
 {
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
        struct vpe_fmt *fmt = find_format(f);
 
        if (V4L2_TYPE_IS_OUTPUT(f->type))
 static int vpe_s_fmt(struct file *file, void *priv, struct v4l2_format *f)
 {
        int ret;
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
 
        ret = vpe_try_fmt(file, priv, f);
        if (ret)
 static int vpe_g_selection(struct file *file, void *fh,
                struct v4l2_selection *s)
 {
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
        struct vpe_q_data *q_data;
        bool use_c_rect = false;
 
 static int vpe_s_selection(struct file *file, void *fh,
                struct v4l2_selection *s)
 {
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
        struct vpe_q_data *q_data;
        struct v4l2_selection sel = *s;
        int ret;
        init_adb_hdrs(ctx);
 
        v4l2_fh_init(&ctx->fh, video_devdata(file));
-       file->private_data = &ctx->fh;
+       file->private_data = ctx;
 
        hdl = &ctx->hdl;
        v4l2_ctrl_handler_init(hdl, 1);
 static int vpe_release(struct file *file)
 {
        struct vpe_dev *dev = video_drvdata(file);
-       struct vpe_ctx *ctx = file2ctx(file);
+       struct vpe_ctx *ctx = file->private_data;
 
        vpe_dbg(dev, "releasing instance %p\n", ctx);