@@ -182,11 +182,6 @@ static unsigned int v4l2_format_code(const char *name)
static int video_open(struct device *dev, const char *devname, int no_query)
{
- struct v4l2_capability cap;
- unsigned int capabilities;
- int ret;
-
- memset(dev, 0, sizeof *dev);
dev->fd = -1;
dev->memtype = V4L2_MEMORY_MMAP;
dev->buffers = NULL;
@@ -1302,7 +1297,7 @@ static struct option opts[] = {
int main(int argc, char *argv[])
{
struct sched_param sched;
- struct device dev;
+ struct device dev = { 0 };
int ret;
/* Options parsings */
This is necessary since video_open() may not be always called soon Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> --- yavta.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-)