{  1, 60 },
 };
 
-static const struct v4l2_discrete_probe webcam_probe = {
-       webcam_sizes,
-       VIVID_WEBCAM_SIZES
-};
-
 static int vid_cap_queue_setup(struct vb2_queue *vq,
                       unsigned *nbuffers, unsigned *nplanes,
                       unsigned sizes[], struct device *alloc_devs[])
        mp->field = vivid_field_cap(dev, mp->field);
        if (vivid_is_webcam(dev)) {
                const struct v4l2_frmsize_discrete *sz =
-                       v4l2_find_nearest_format(&webcam_probe, mp->width, mp->height);
+                       v4l2_find_nearest_format(webcam_sizes,
+                                                VIVID_WEBCAM_SIZES,
+                                                mp->width, mp->height);
 
                w = sz->width;
                h = sz->height;
 
 }
 EXPORT_SYMBOL_GPL(v4l_bound_align_image);
 
-const struct v4l2_frmsize_discrete *v4l2_find_nearest_format(
-               const struct v4l2_discrete_probe *probe,
-               s32 width, s32 height)
+const struct v4l2_frmsize_discrete *
+v4l2_find_nearest_format(const struct v4l2_frmsize_discrete *sizes,
+                         size_t num_sizes,
+                         s32 width, s32 height)
 {
        int i;
        u32 error, min_error = UINT_MAX;
        const struct v4l2_frmsize_discrete *size, *best = NULL;
 
-       if (!probe)
-               return best;
+       if (!sizes)
+               return NULL;
 
-       for (i = 0, size = probe->sizes; i < probe->num_sizes; i++, size++) {
+       for (i = 0, size = sizes; i < num_sizes; i++, size++) {
                error = abs(size->width - width) + abs(size->height - height);
                if (error < min_error) {
                        min_error = error;
 
                           unsigned int hmax, unsigned int halign,
                           unsigned int salign);
 
-struct v4l2_discrete_probe {
-       const struct v4l2_frmsize_discrete      *sizes;
-       int                                     num_sizes;
-};
-
-const struct v4l2_frmsize_discrete *v4l2_find_nearest_format(
-               const struct v4l2_discrete_probe *probe,
-               s32 width, s32 height);
+const struct v4l2_frmsize_discrete *
+v4l2_find_nearest_format(const struct v4l2_frmsize_discrete *sizes,
+                         const size_t num_sizes,
+                         s32 width, s32 height);
 
 void v4l2_get_timestamp(struct timeval *tv);