Lines Matching refs:comp_temp
96 struct dpaa2_qdma_comp *comp_temp = NULL;
102 comp_temp = kzalloc(sizeof(*comp_temp), GFP_NOWAIT);
103 if (!comp_temp)
105 comp_temp->fd_virt_addr =
107 &comp_temp->fd_bus_addr);
108 if (!comp_temp->fd_virt_addr)
111 comp_temp->fl_virt_addr =
113 &comp_temp->fl_bus_addr);
114 if (!comp_temp->fl_virt_addr)
117 comp_temp->desc_virt_addr =
119 &comp_temp->desc_bus_addr);
120 if (!comp_temp->desc_virt_addr)
123 comp_temp->qchan = dpaa2_chan;
124 return comp_temp;
127 comp_temp = list_first_entry(&dpaa2_chan->comp_free,
129 list_del(&comp_temp->list);
132 comp_temp->qchan = dpaa2_chan;
134 return comp_temp;
138 comp_temp->fl_virt_addr,
139 comp_temp->fl_bus_addr);
142 comp_temp->fd_virt_addr,
143 comp_temp->fd_bus_addr);
145 kfree(comp_temp);