Lines Matching refs:item
948 struct ivtv_open_id *item; local
993 item = kzalloc(sizeof(struct ivtv_open_id), GFP_KERNEL);
994 if (NULL == item) {
998 v4l2_fh_init(&item->fh, &s->vdev);
999 item->itv = itv;
1000 item->type = s->type;
1002 filp->private_data = &item->fh;
1003 v4l2_fh_add(&item->fh);
1005 if (item->type == IVTV_ENC_STREAM_TYPE_RAD &&
1011 v4l2_fh_del(&item->fh);
1012 v4l2_fh_exit(&item->fh);
1013 kfree(item);