mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 08:04:22 +08:00
94ddd60d9c
This patch corrects the SPDX License Identifier style in header files for TV Master Media USB Adapter drivers. For C header files Documentation/process/license-rules.rst mandates C-like comments (opposed to C source files where C++ style should be used) Changes made by using a script provided by Joe Perches here: https://lkml.org/lkml/2019/2/7/46. Suggested-by: Joe Perches <joe@perches.com> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
39 lines
808 B
C
39 lines
808 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* tm6000-buf.c - driver for TM5600/TM6000/TM6010 USB video capture devices
|
|
*
|
|
* Copyright (c) 2006-2007 Mauro Carvalho Chehab <mchehab@kernel.org>
|
|
*/
|
|
|
|
#include <linux/videodev2.h>
|
|
|
|
#define TM6000_URB_MSG_LEN 180
|
|
|
|
struct usb_isoc_ctl {
|
|
/* max packet size of isoc transaction */
|
|
int max_pkt_size;
|
|
|
|
/* number of allocated urbs */
|
|
int num_bufs;
|
|
|
|
/* urb for isoc transfers */
|
|
struct urb **urb;
|
|
|
|
/* transfer buffers for isoc transfer */
|
|
char **transfer_buffer;
|
|
|
|
/* Last buffer command and region */
|
|
u8 cmd;
|
|
int pos, size, pktsize;
|
|
|
|
/* Last field: ODD or EVEN? */
|
|
int vfield, field;
|
|
|
|
/* Stores incomplete commands */
|
|
u32 tmp_buf;
|
|
int tmp_buf_len;
|
|
|
|
/* Stores already requested buffers */
|
|
struct tm6000_buffer *buf;
|
|
};
|