Lines Matching defs:item
936 struct ivtv_open_id *item;
981 item = kzalloc(sizeof(struct ivtv_open_id), GFP_KERNEL);
982 if (NULL == item) {
986 v4l2_fh_init(&item->fh, &s->vdev);
987 item->itv = itv;
988 item->type = s->type;
990 filp->private_data = &item->fh;
991 v4l2_fh_add(&item->fh);
993 if (item->type == IVTV_ENC_STREAM_TYPE_RAD &&
999 v4l2_fh_del(&item->fh);
1000 v4l2_fh_exit(&item->fh);
1001 kfree(item);