aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/v4l2-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/v4l2-common.c')
-rw-r--r--drivers/media/video/v4l2-common.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/video/v4l2-common.c b/drivers/media/video/v4l2-common.c
index 31ae1a138613..cef80dab1a0d 100644
--- a/drivers/media/video/v4l2-common.c
+++ b/drivers/media/video/v4l2-common.c
@@ -677,12 +677,13 @@ int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info)
677} 677}
678EXPORT_SYMBOL_GPL(v4l_fill_dv_preset_info); 678EXPORT_SYMBOL_GPL(v4l_fill_dv_preset_info);
679 679
680struct v4l2_frmsize_discrete *v4l2_find_nearest_format(struct v4l2_discrete_probe *probe, 680const struct v4l2_frmsize_discrete *v4l2_find_nearest_format(
681 s32 width, s32 height) 681 const struct v4l2_discrete_probe *probe,
682 s32 width, s32 height)
682{ 683{
683 int i; 684 int i;
684 u32 error, min_error = UINT_MAX; 685 u32 error, min_error = UINT_MAX;
685 struct v4l2_frmsize_discrete *size, *best = NULL; 686 const struct v4l2_frmsize_discrete *size, *best = NULL;
686 687
687 if (!probe) 688 if (!probe)
688 return best; 689 return best;