Lines Matching defs:item
783 struct cx18_open_id *item;
788 item = kzalloc(sizeof(struct cx18_open_id), GFP_KERNEL);
789 if (NULL == item) {
793 v4l2_fh_init(&item->fh, &s->video_dev);
795 item->cx = cx;
796 item->type = s->type;
798 item->open_id = cx->open_id++;
799 filp->private_data = &item->fh;
800 v4l2_fh_add(&item->fh);
802 if (item->type == CX18_ENC_STREAM_TYPE_RAD &&
808 v4l2_fh_del(&item->fh);
809 v4l2_fh_exit(&item->fh);
810 kfree(item);