Commit 0ef69c88 authored by Josuah Demangeon's avatar Josuah Demangeon Committed by Henrik Brix Andersen
Browse files

drivers: video: fix a typo in get_ctrl API function type



The "struct video_driver_api" struct field "get_ctrl" had the wrong type
although this did not have any practical effect as "video_api_set_ctrl_t"
and "video_api_get_ctrl_t" have the same signature.

Signed-off-by: default avatarJosuah Demangeon <me@josuah.net>
parent 8595a0cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -335,7 +335,7 @@ __subsystem struct video_driver_api {
	video_api_dequeue_t dequeue;
	video_api_flush_t flush;
	video_api_set_ctrl_t set_ctrl;
	video_api_set_ctrl_t get_ctrl;
	video_api_get_ctrl_t get_ctrl;
	video_api_set_signal_t set_signal;
	video_api_set_frmival_t set_frmival;
	video_api_get_frmival_t get_frmival;