Searched refs:vidinf (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/hdpvr/
H A Dhdpvr-control.c52 struct hdpvr_video_info *vidinf = NULL; local
58 vidinf = kzalloc(sizeof(struct hdpvr_video_info), GFP_KERNEL);
59 if (!vidinf) {
72 vidinf->width = dev->usbc_buf[1] << 8 | dev->usbc_buf[0];
73 vidinf->height = dev->usbc_buf[3] << 8 | dev->usbc_buf[2];
74 vidinf->fps = dev->usbc_buf[4];
87 if (!vidinf->width || !vidinf->height || !vidinf->fps) {
88 kfree(vidinf);
[all...]
H A Dhdpvr-core.c203 struct hdpvr_video_info *vidinf; local
225 vidinf = get_video_info(dev);
226 if (!vidinf)
230 kfree(vidinf);
H A Dhdpvr-video.c263 struct hdpvr_video_info *vidinf; local
270 vidinf = get_video_info(dev);
272 if (vidinf) {
274 "video signal: %dx%d@%dhz\n", vidinf->width,
275 vidinf->height, vidinf->fps);
276 kfree(vidinf);

Completed in 33 milliseconds