Lines Matching refs:item
799 struct cx18_open_id *item; in cx18_serialized_open() local
804 item = kzalloc(sizeof(struct cx18_open_id), GFP_KERNEL); in cx18_serialized_open()
805 if (NULL == item) { in cx18_serialized_open()
809 v4l2_fh_init(&item->fh, &s->video_dev); in cx18_serialized_open()
811 item->cx = cx; in cx18_serialized_open()
812 item->type = s->type; in cx18_serialized_open()
814 item->open_id = cx->open_id++; in cx18_serialized_open()
815 filp->private_data = &item->fh; in cx18_serialized_open()
816 v4l2_fh_add(&item->fh); in cx18_serialized_open()
818 if (item->type == CX18_ENC_STREAM_TYPE_RAD && in cx18_serialized_open()
824 v4l2_fh_del(&item->fh); in cx18_serialized_open()
825 v4l2_fh_exit(&item->fh); in cx18_serialized_open()
826 kfree(item); in cx18_serialized_open()