blob: ec52752f7326d2d422be5e8ea054bb4932f113dc [file] [log] [blame]
Laurent Pinchartcdda4792010-05-02 20:57:41 +02001/*
2 * f_uvc.h -- USB Video Class Gadget driver
3 *
4 * Copyright (C) 2009-2010
5 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
Laurent Pinchartcdda4792010-05-02 20:57:41 +020011 */
12
13#ifndef _F_UVC_H_
14#define _F_UVC_H_
15
16#include <linux/usb/composite.h>
Laurent Pinchartbbafc0c2010-07-10 15:03:20 -030017#include <linux/usb/video.h>
Laurent Pinchartcdda4792010-05-02 20:57:41 +020018
Laurent Pinchartee6a4d82013-03-01 20:46:24 +010019int uvc_bind_config(struct usb_configuration *c,
20 const struct uvc_descriptor_header * const *fs_control,
21 const struct uvc_descriptor_header * const *hs_control,
22 const struct uvc_descriptor_header * const *fs_streaming,
23 const struct uvc_descriptor_header * const *hs_streaming,
24 const struct uvc_descriptor_header * const *ss_streaming);
Laurent Pinchartcdda4792010-05-02 20:57:41 +020025
26#endif /* _F_UVC_H_ */
27