Commit 72796835 authored by Andrzej Pietrasiewicz's avatar Andrzej Pietrasiewicz Committed by Felipe Balbi

usb: gadget: uvc: use explicit type instead of void *

The first parameter of __uvcg_iter_strm_cls() is always used in
the context of struct uvcg_streaming_header, so change the
function prototype accordingly.
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarAndrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent e235f7b8
...@@ -1918,10 +1918,10 @@ enum uvcg_strm_type { ...@@ -1918,10 +1918,10 @@ enum uvcg_strm_type {
UVCG_FRAME UVCG_FRAME
}; };
static int __uvcg_iter_strm_cls(void *priv1, void *priv2, void *priv3, static int __uvcg_iter_strm_cls(struct uvcg_streaming_header *h,
void *priv2, void *priv3,
int (*fun)(void *, void *, void *, int, enum uvcg_strm_type type)) int (*fun)(void *, void *, void *, int, enum uvcg_strm_type type))
{ {
struct uvcg_streaming_header *h = priv1;
struct uvcg_format_ptr *f; struct uvcg_format_ptr *f;
struct config_group *grp; struct config_group *grp;
struct config_item *item; struct config_item *item;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment