Skip to content

Commit 44723b8

Browse files
paulkocialkowskimchehab
authored andcommitted
media: sun6i-isp: proc: Declare subdev ops as static
The static keyword is missing in the v4l2 subdev ops definition for the proc. Signed-off-by: Paul Kocialkowski <[email protected]> Fixes: e3185e1 ("media: staging: media: Add support for the Allwinner A31 ISP") Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Hans Verkuil <[email protected]>
1 parent f72af77 commit 44723b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/staging/media/sunxi/sun6i-isp/sun6i_isp_proc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ static const struct v4l2_subdev_pad_ops sun6i_isp_proc_pad_ops = {
342342
.set_fmt = sun6i_isp_proc_set_fmt,
343343
};
344344

345-
const struct v4l2_subdev_ops sun6i_isp_proc_subdev_ops = {
345+
static const struct v4l2_subdev_ops sun6i_isp_proc_subdev_ops = {
346346
.video = &sun6i_isp_proc_video_ops,
347347
.pad = &sun6i_isp_proc_pad_ops,
348348
};

0 commit comments

Comments
 (0)