if (ret)
                return ret;
 
-       memset(fd, 0, sizeof(*fd));
-
        fd->type = V4L2_MBUS_FRAME_DESC_TYPE_PARALLEL;
 
        state = v4l2_subdev_lock_and_get_active_state(sd);
 
        if (ret)
                return ret;
 
-       memset(fd, 0, sizeof(*fd));
-
        fd->type = V4L2_MBUS_FRAME_DESC_TYPE_CSI2;
 
        state = v4l2_subdev_lock_and_get_active_state(sd);
 
        if (!ub960_pad_is_source(priv, pad))
                return -EINVAL;
 
-       memset(fd, 0, sizeof(*fd));
-
        fd->type = V4L2_MBUS_FRAME_DESC_TYPE_CSI2;
 
        state = v4l2_subdev_lock_and_get_active_state(&priv->sd);
 
               sd->ops->pad->set_selection(sd, state, sel);
 }
 
+static int call_get_frame_desc(struct v4l2_subdev *sd, unsigned int pad,
+                              struct v4l2_mbus_frame_desc *fd)
+{
+       memset(fd, 0, sizeof(*fd));
+
+       return sd->ops->pad->get_frame_desc(sd, pad, fd);
+}
+
 static inline int check_edid(struct v4l2_subdev *sd,
                             struct v4l2_subdev_edid *edid)
 {
        .set_edid               = call_set_edid,
        .dv_timings_cap         = call_dv_timings_cap,
        .enum_dv_timings        = call_enum_dv_timings,
+       .get_frame_desc         = call_get_frame_desc,
        .get_mbus_config        = call_get_mbus_config,
 };