Lines Matching defs:item
730 struct cx18_open_id *item;
735 item = kzalloc(sizeof(struct cx18_open_id), GFP_KERNEL);
736 if (NULL == item) {
740 v4l2_fh_init(&item->fh, &s->video_dev);
742 item->cx = cx;
743 item->type = s->type;
745 item->open_id = cx->open_id++;
746 filp->private_data = &item->fh;
747 v4l2_fh_add(&item->fh);
749 if (item->type == CX18_ENC_STREAM_TYPE_RAD &&
755 v4l2_fh_del(&item->fh);
756 v4l2_fh_exit(&item->fh);
757 kfree(item);